chrome中ul的padding-left: 40px

来源:互联网 发布:鸡尾酒工具推荐 知乎 编辑:程序博客网 时间:2024/06/06 03:44

chrome中,ul具有默认样式

ul, menu, dir {    display: block;    list-style-type: disc;    -webkit-margin-before: 1em;    -webkit-margin-after: 1em;    -webkit-margin-start: 0px;    -webkit-margin-end: 0px;    -webkit-padding-start: 40px;}

因此,为了防止不同浏览器的显示不同,应该设置


* {margin:0; padding:0;}

据说上面那个比较占资源)或者用下面这个

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, table, th, td {margin:0; padding:0;}

参考文章:ul的padding-left:40px问题

原创粉丝点击