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.
<div class="pluginTitle"><h2>Latest Posts</h2></div>
如何使用 CSS 设置属于类font-size:11px的<h2>子元素的元素?.pluginTitle
font-size:11px
<h2>
.pluginTitle
使用子选择器>选择子项
>
.pluginTitle > h2 { font-size:11px }
.pluginTitle h2 { font-size: 11px; }