4

这可能看起来很乏味,但我需要找出一种方法来确保站点的所有行都在基线网格上。问题是锚被设置为font-weight: bold,这在锚文本的顶部添加了似乎是 2px 的空间。有一个简单的 CSS 解决方案吗?

4

3 回答 3

3

为了避免观察到的行为,一种可能的解决方案是将 line-height 设置为特定值。

于 2013-07-09T03:06:14.490 回答
2

最终为我工作的是以下 CSS:

a {line-height: 0}

于 2013-07-09T02:57:08.490 回答
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如有必要,您可以添加到该列表中。

于 2013-07-08T23:50:18.803 回答