CSS 字体大小重置

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/16771379/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 23:01:18  来源:igfitidea点击:

CSS Font-Size Reset

cssfont-size

提问by Noah Wetjen

I'm just wondering if there is any kind of CSS font-size Reset Code, since I am doing a grid without float and had to set the font-size to 0

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

As a Result of that none of my Text inside that Div is showing up.

结果,我在那个 Div 中的文本都没有显示出来。

Thank you for your help!

感谢您的帮助!

Edit:

编辑:

JSFiddle

JSFiddle

Some way to do the Grid without setting the font-size to 0 would also be great.

在不将字体大小设置为 0 的情况下执行 Grid 的某种方法也很棒。

This is the simplified Markup and CSS I'm using:

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

HTML

HTML

<div class="container">

    <div class="inner">

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

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

    </div>

</div>

CSS

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;
}

回答by Nitesh

Use Eric MeyerCSS Reset.

使用Eric MeyerCSS 重置。

Here is the code:

这是代码:

/* 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;
}

There are many resets, but like you said you need something specific for fonts, but this reset, when used in totality, has helped me for a lot of my projects including font-size and when used as full, shall fulfill your font-size requirement too. Hope this Helps.

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