html – 将css样式应用于多个模式

html – 将css样式应用于多个模式,第1张

概述如何将CSS样式块应用于多个不同的类?例如,我有 <div class="foo">...</div><div class="bar">...</div>....foo .bar ??? // This selector should apply to both classes{ font-size:50%; ...} .foo, .bar{ font-size: 如何将CSS样式块应用于多个不同的类?例如,我有
<div >...</div><div >...</div>....foo .bar ???    // This selector should apply to both classes{  Font-size:50%;  ...}
解决方法
.foo,.bar{  Font-size:50%;  ...}

资料来源:http://www.w3.org/TR/CSS2/selector.html#grouping

总结

以上是内存溢出为你收集整理的html – 将css样式应用于多个模式全部内容,希望文章能够帮你解决html – 将css样式应用于多个模式所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131628.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存