css学习
本人学习的一些经验
HTML + CSS + javascript
结构 + 表现 +行为
用各类选择器选择出想要操作的元素,再进行美化网页,如:字体颜色,编剧,高,宽,背景,图片,定位,浮动,动画······
.th{
width: 250px;
background: #a09d9d;
}
h1{
font-size: 18px;
font-weight: bold;
font-family: 华文行楷;
text-indent: 2em;
line-height: 35px;
background: red url("../resources/img/2.png") 220px 12px no-repeat;
}
ul li{
height: 30px;
list-style: none;
text-indent: 2em;
background-image: url("../resources/img/1.png");
background-repeat: no-repeat;
background-position:187px 2px ;
}
a{
text-decoration: none;
font-size: 15px;
color: #000000;
}
a:hover{
color: aqua;
}
本人学习的一些小结,推荐更好的学习网站
菜鸟教程
|