网站CSS通用写法一般怎么写?
发布网友
发布时间:2022-04-06 13:22
我来回答
共2个回答
热心网友
时间:2022-04-06 14:51
我一般是这样写
/*reset style*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td { margin:0; padding:0; }
body { width:100%; height:100%; background:#FFF; color:#333; font:12px/1.5em Arial, Helvetica, sans-serif; position:relative; left:0; top:0; }
h1, h2, h3, h4, h5, h6 { font-size:1em; }
*{ word-wrap: break-word;}
a, a:hover { color:#333; text-decoration:none; }
a:hover { color:#c00; }
fieldset, img { border:none; }
img{ border:0; vertical-align:middle;}
legend { display:none; }
ol, ul, li { list-style:none; }
em, strong, cite, th { font-style:normal; font-weight:400; }
input, textarea, select, button { font:12px Verdana, Helvetica, Arial, sans-serif; }
table { border-collapse:collapse; }
html { overflow:-moz-scrollbars-vertical; }
/* common style */
.clearfix:after { content:"."; display:block; height:0; clear:both; visibility:hidden; }
.clearfix { display:inline-block; }
/*\*/ .clearfix { display:block; } /**/
.cl{ clear:both;}
把它写在一个css文件里 存起来 然后直接调用 我每次写都是这样用的
热心网友
时间:2022-04-06 16:09
嗯,一般就是这么写的,把通用的写在一起,然后在写不的地方.