LoginSignup
0
0

More than 1 year has passed since last update.

ブロック要素の高さ

Last updated at Posted at 2021-07-05

現状

HTMLとCSSを始めたばかり。懸命に見本サイト模倣中


問題点

インライン要素/ブロック要素の区別が曖昧で、高さにつまづきがち


覚えるべきこと

・ブロック要素(height:auto)
  heightの指定がない限り”高さは内包する要素に依存する”
  ※中身の要素に合わせるプロパティ

・display:block/inline-block/table
  高さ指定可能

<ul>タグはデフォルトで余白がつくので取り除く

  ul {
margin: 0;
padding: 0;
}


参考にしたサイト(https://saruwakakun.com/html-css/basic/width-height)

0
0
0

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