1.页面技巧:
先结构后布局;标签语义化;src防止不识别使用./;
2.reset.css有一个写好的CSS
https://meyerweb.com/eric/tools/css/reset/
HTML标签:https://www.w3school.com.cn/tags/tag_s.asp
HTML有一些语义化标签–我是一个也没学会!视频课里面也没看到过!
- 首先创建如下内容:
- base.css是基础样式;index.css是自定义基础样式;reset.css是拷贝的基础样式;style.css是字体图标样式。
- 引用
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
- base.css
/*版心,观察淘宝的网页,可以学到不少东西*/
.w{
width: 119rem;
margin: 0 auto;
}
/*水平对齐方式*/
.tl{
text-align: left;
}
.tr{
text-align: right;
}
.tc{
text-align: center;
}
/*页面通用颜色*/
.f60{
color: #f8b62b;
}
/*清除语义化标签的默认样式*/
s,i{
font-style: normal;
text-decoration: none;
}
6.index.css
/**********通用样式-start**************/
/**********通用样式-end**************/
/**********广告-start**************/
.lk-top-banner {
position: relative;
background-color: red;
}
.lk-top-banner .top-banner-center {
height: 10rem;
}
.lk-top-banner .top-banner-center img {
height: 10rem;
width: 100%;
}
.lk-top-banner .banner-close {
position: absolute;
top: 0.3rem;
right: 9rem;
width: 1.9rem;
height: 1.9rem;
background: url("./../images/16sucai_201403111752.jpg") 0 0;
}
.lk-top-banner .banner-close:hover {
background-position: 15rem -68rem;
}
/**********广告-end**************/
/**********顶部通栏-start**************/
.lk-toolbar {
background-color: #f5f5f5;
height: 3.5rem;
border-bottom: 0.1rem solid #eeeeee;
}
.lk-toolbar > div {
height: 100%;
}
.lk-toolbar > div li {
float: left;
line-height: 3.5rem;
padding: 0 2.5rem 0 0.1rem;
/*定位,子绝父相*/
position: relative;
}
.lk-toolbar > div li.down i {
/*li.down如果中间有空格,就会失效*/
position: absolute;
right: 1rem;
to