最佳答案
在我的网站上,我使用 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
到 inherit
这样的东西不会继承浏览器的默认样式,只是为了这个 CSS 属性。
有没有办法在不修改 reset.css 的情况下继承某些属性的原始浏览器样式?