Reputation: 26598
<div class="pluginTitle"><h2>Latest Posts</h2></div>
How can I set font-size:11px of <h2> elements that are children of .pluginTitle class with CSS?
font-size:11px
<h2>
.pluginTitle
Upvotes: 0
Views: 1398
Reputation: 97727
Use the child selector > to select children
>
.pluginTitle > h2 { font-size:11px }
Upvotes: 3
Reputation: 7155
.pluginTitle h2 { font-size: 11px; }
Upvotes: 1