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>
クラスの子である要素を CSSfont-size:11pxで<h2>設定するにはどうすればよいですか?.pluginTitle
font-size:11px
<h2>
.pluginTitle
子セレクター>を使用して子を選択します
>
.pluginTitle > h2 { font-size:11px }
.pluginTitle h2 { font-size: 11px; }