在我的网站上,我使用reset.css。它将精确地添加到列表样式中:
ol, ul {
list-style: none outside none;
}
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, font, 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 {
background: none repeat scroll 0 0 transparent;
border: 0 none;
font-size: 100%;
margin: 0;
outline: 0 none;
padding: 0;
vertical-align: baseline;
}
问题是所有列表样式都设置为 NONE
为此。我只想还原网站子页面上的所有列表(中的所有列表.my_container
)的原始列表样式(默认)。
当我尝试设置诸如 list-style-type
toinherit
这样的不会仅继承此CSS属性的浏览器默认样式。
有什么方法可以继承某些属性的原始浏览器样式,而无需修改reset.css?