4

我只是想知道是否有任何类型的 CSS 字体大小重置代码,因为我正在做一个没有浮动的网格并且必须将字体大小设置为 0

结果,我在该 Div 中的任何文本都没有出现。

谢谢您的帮助!

编辑:

JSFiddle

在不将 font-size 设置为 0 的情况下执行 Grid 的某种方法也很棒。

这是我正在使用的简化标记和 CSS:

HTML

<div class="container">

    <div class="inner">

        <section id="left-area"> [...] </section>

        <section id="right-area"> [...] </section>

    </div>

</div>

CSS

.container {
    margin: 0 auto;
    text-align: left;
    width: 1020px;
}

.container .inner {
    width: 100%;
    height: 100%;
    display: table-row;
    font-size: 0;
}

.container .inner section#left-area, .container .inner section#right-area {
    display: inline-block;
    vertical-align: top;
}
4

1 回答 1

10

使用Eric Meyer CSS 重置。

这是代码:

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

有很多重置,但是就像您说的那样,您需要一些特定于字体的东西,但是这个重置,当整体使用时,对我的很多项目都有帮助,包括字体大小,当完全使用时,应该满足您的字体大小要求也。希望这可以帮助。

于 2013-05-27T10:44:29.467 回答