这可能看起来很乏味,但我需要找出一种方法来确保站点的所有行都在基线网格上。问题是锚点设置为font-weight: bold
,这会在锚文本的顶部添加似乎是2px的空间。有一个简单的CSS解决方案吗?
答案 0 :(得分:2)
为避免观察到的行为,可能的解决方法是将行高设置为特定值。
答案 1 :(得分:1)
最终为我工作的是以下CSS:
a {line-height: 0}
答案 2 :(得分:0)
您应该查看所有网站的CSS重置问题:http://meyerweb.com/eric/tools/css/reset/
例如,取自以上链接:
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
如有必要,您可以将font-weight: regular
添加到该列表中。