我只是想知道是否有任何类型的CSS字体大小的重置代码, 因为我正在做一个没有浮动的网格,并且必须将font-size设置为0
结果是我的Div内部没有任何文字出现。
感谢您的帮助!
修改
在不将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;
}
答案 0 :(得分:7)
使用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;
}
有很多重置,但就像你说你需要一些特定的字体,但这个重置,当总体使用时,帮助我很多我的项目,包括字体大小和当用作完整,将履行你的字体大小要求也是。希望这有助于。