5
次の要素のCSSのセレクターの構文は何ですか?
ヘッダータグがある場合 <h1 class="hc-reform">title</h1> h1.hc-reform{ float:left; font-size:30px; color:#0e73bb; font-weight:bold; margin:10px 0px; } その後、段落があり<p>stuff here</p>ます。 CSS を使用<p>して、h1.hc-reformに続くすべてのタグが使用することを確認するにはどうすればよいですか?clear:both; それは: h1.hc-reform > p{ clear:both; } 何らかの理由で機能しません。
200
html
css
css-selectors
siblings