在我的网站上,我使用 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的情况下继承某些属性的原始浏览器样式?