07. CSS 开发习惯

例行设置:

  • 清除盒子内外边距:*{padding:0;margin:0;}

  • 链接取消下划线:a{text-decoration:none}

  • 列表取消列表项标志:ul{list-style:none}

功能型样式:

  • 外边距实现盒子水平居中:margin:0 auto

  • 垂直居中:line-height:盒高

  • 清除浮动:<div style="clear:both;"></div>

默认样式重置

css reset 原则:但凡是浏览默认的样式,都不要使用。

body,h1,h2,h3,h4,h5,h6,p,dl,dd,ul,ol,pre,form,input,textarea,th,td,select{margin:0;padding:0;}
em{font-style:normal}
li{list-style:none;}
a{text-decoration:none;}
img{border:none;vertical-align:top;}
table{border-collapse:collapse;}		//单元格间隙合并
textarea{resize:none;overflow:auto;}  // 默认没有滚动条,溢出才会出现滚动条
posted @ 2019-07-16 12:48  胤小飞  阅读(105)  评论(0)    收藏  举报