html标题标记的默认边距是多少(# ,## ,### 等)?
我避免将默认值与以下重置代码一起使用:
margin:0px; and padding:0px;
例如,下面的标题标签的默认边距是多少?
<h1>Header</h1>
回答:
哪种浏览器有所不同,因此,如果要使用像素完美的设计,则可以将这些值“重置”为0(边距和填充),然后自行设置。
“ CSS重置”在前端开发人员中非常常见,我使用的一个简单示例就是:
html,body,blockquote,code,h1,h2,h3,h4,h5,h6,p,pre{margin:0;padding:0}button,fieldset,form,input,legend,textarea,select{margin:0;padding:0}
fieldset{border:0}
a,a *{cursor:pointer}
div{margin:0;padding:0;background-color:transparent;text-align:left}
hr,img{border:0}
applet,iframe,object{border:0;margin:0;padding:0}
button,input[type=button],input[type=image],input[type=reset],input[type=submit],label{cursor:pointer;}
ul,li{list-style:none;margin:0;padding:0;}
span{font-weight:bold;}
em{font-style:italic;}
以上是 html标题标记的默认边距是多少(# ,## ,### 等)? 的全部内容, 来源链接: utcz.com/qa/421566.html