LoginSignup
0
0

More than 5 years have passed since last update.

HTML&CSS: 空のsectionタグに高さを持たせるとき

Last updated at Posted at 2019-01-08

単純に終了タグの付け方の問題らしい.

index.html
<!-- ダメな例 -->
<section id="empty"/>

<!-- 良い例 -->
<section id="empty"></section>
style.css
section#empty {
    width: 100%;
    height: 50px;
}
0
0
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0