1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

素人によるblock, inline-block, inline

Posted at

はじめに

 HTML・CSSを書いていて、うまくCSSのプロパティがあたらないことがよくありました。そんなときの主な原因はプロパティをあてたいタグのdispalyプロパティの初期値を把握していなかったことでした。今回は主なHTMLタグのdispalyプロパティの初期値とそれらの特徴ゆえに自分がよくひっかかっていたところをまとめてみようと思います。

デフォルト値

 以下が主なHTMLタグのdisplay初期値となります。

block inline block inline
div input span
h1 ~ h6 textarea img
p button a
form select
header
footer
section

よくひっかかっていた特徴

 僕がよくひっかかっていたそれぞれの特徴です。

block inline block inline
heightやwidthの指定 できる できる できない
vertical-alignの指定 できない できる できる
text-alignの指定 できない できる できる

おわり

 画像の高さが指定できなくてよくひっかかっていました。imgタグの初期値はdisplay: inlineなので当然ですね。書いてて思いましたが、僕がよく使うHTMLタグって結構少ないんだなと。もっとセマンティックに書けるようになりたいものです。

 記事を書くにあたっては過去の経験を元にしており、一部のみ手元で確認した程度ですので誤りなどございましたらお気軽にご指摘ください。

1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?