【2016.12.15】html初始css

清理块状边界


body,div,dl,dt,dd,ul,li,h1,h2,h3,h4,h5,h6,input,form,a,p,textarea{ margin: 0; padding: 0; font-family: helvetica neue,helvetica,arial,sans-serif; }

去掉字前面的点


ol,ul,li{ list-style: :none; }

超链接去掉下划线和形成块状


a{ text-decoration: none; display: :block; }

图片没有外边框和形成块状


img{ border: none; display: block; }

清理块浮动


.clearfloat{ zoom: 1; }

初始完成

你可能感兴趣的:(【2016.12.15】html初始css)