做网站打底css样式表

原文地址:做网站打底css样式表 作者:tigerluo
最近一直忙于网页制作,每次制作时都需要写基层css样式表。为了简单快捷,我把自己经常用的基层样式表发到日志里,给大家提供参考,也使自己以后在制作网页时直接复制粘贴。

  本css样式表为个人总结,可能还存在一些问题,请大家慎重使用。如果有css高手,也可以帮忙改进一下,共同进步。
  以下为CSS基层样式:

body,h1,h2,h3,h4,h5,h6,hr,p,img,div,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{
 margin:0;padding:0;
 }
body,button,input,select,textarea{
 font: 12px/1.5 Tahoma, Arial, "宋体", sans-serif;
 -webkit-text-size-adjust: none;
 }
h1,h2,h3,h4,h5,h6{
 font-size:100%;
 }
li,ul,ol,dl,dt,dd{
 list-style:none;
 }
img{
 border:0;
 }
a,a:link,a:visited {
 color: #333;
 }
a:hover,a:active {
 color: #FF0000;
 }
a{
 text-decoration:none;
 }
a:hover{
 text-decoration:underline;
 }


顺便加两个兼容代码,代码放在</head>之前:
<META content=IE=EmulateIE7 http-equiv=X-UA-Compatible>
<META content=IE=7 http-equiv=X-UA-Compatible>
一修改于2010-12-22   10:40

你可能感兴趣的:(做网站打底css样式表)