如果你学完HTML初级教程即可学习CSS初级教程,使用CSS处理HTML样式。
下面的代码覆盖了初级教程的所有方面,保存下面的CSS文件并且在浏览器里观看连接的HTML,你可以明白各个CSS属性的用法。最好的学习方法就是理解作用在HTML上的CSS文件,改变CSSHTML会发生什么变化。
body{
font-family:arial,helvetica,sans-serif;
font-size:
color:
background-color:
margin:
padding:
}
/*Bytheway,thisisacomment*/
p{
line-height:
}
h1{
color:
background-color:
font-size:
margin:
margin-bottom:
padding:0.25em;
font-style:italic;
text-align:center;
letter-spacing:
border-bottom-style:
border-bottom-width:
border-bottom-color:
}
h2{
color:
background-color:
font-size:
margin:
padding:
padding-left:
}
h3{
color:
font-size:1.25em;
}
img{
border-style:dashed;
border-width:
border-color:
}
a{
text-decoration:
}
strong{
font-style:italic;
text-transform:uppercase;
}
li{
color:
font-style:italic;
}
table{
background-color:
}