css练习

来源:互联网 发布:mathematica 11.2 mac 编辑:程序博客网 时间:2024/05/17 22:14

/*整体设计*/
body
{
 font:12px Tahoma;
 margin:0px;
 text-align:center;
 background:#ffffff;
}
#container{width:100%;}
#header
{
 width:800px;
 margin:0px auto;
 height:100px;
 background:#ffcc99;
}
#pagebody
{
 width:800px;
 margin:0px auto;
 height:400px;
 background:#ccff00;
}
#footer
{
 width:800px;
 margin:0 auto;
 height:50px;
 background:#00ffff;
}
a:link,a:visited
{
 font-size:12px;
 text-decoration:none;
}
a:hover{}
/*局部细化*/