Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个CSS类:
text_css
我想在其中应用继承属性。这适用于 IE8 和 IE9。我知道继承不适用于 IE7。
任何人都可以为此提出任何解决方法吗?
解决方法是将属性设置为应继承的特定值。这是否可行取决于上下文。
例如,如果您想让input元素具有与周围内容相同的字体系列,您可以使用input { font-family: inherit; },尽管这在 IE7 上不起作用(大问题?)。但大多数人都想设置整体字体系列,所以你可以简单地设置 eg body, input { font-family: Calibri, sans-serif; }。
input
input { font-family: inherit; }
body, input { font-family: Calibri, sans-serif; }
为了获得更好的建议,请说明使用的上下文和目的inherit。这是一个很少需要的值。
inherit