我刚刚用这个标准化了字体大小:
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
现在我想调整标题标记的大小,给出<h1>, <h2>
的百分比。像这样:
h1 {font-size: 2em; margin: .67em 0;}
h2 {font-size: 180%; margin: .83em 0;}
h3 {font-size: 1.17em; margin: 1em 0;}
h4 {font-size: 1em; margin: 1.33em 0;}
h5 {font-size: .83em; line-height: 1.17em; margin: 1.67em 0;}
h6 {font-size: .67em; margin: 2.33em 0;}
h1, h2, h3, h4, h5, h6 {font-weight: bolder;}
正如你所看到的,我给了h2一个百分比,但其余部分的百分比是多少?
答案 0 :(得分:2)
我发现此链接带有转化table。
答案 1 :(得分:1)
查看以下链接,它可能有助于您解决这个问题:
答案 2 :(得分:0)
百分比可以是您想要的百分比。没有什么可以说H1必须大于H2,这只是默认值。