0
1

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.

HTMLのボックスの概念を整理しておく

Posted at

#ボックスとは

HTMLには、「ボックス」という概念があり、ブロックレベルの要素に対して適応される。

ブロックレベル要素

見出し・段落・表など、文書を構成する基本となる要素。

<div>
<form>
<h1>-<h6>
<ul>
<p>
<table>

インラインレベル要素

インライン要素は、ブロックレベル要素のコンテンツ(中身)として用いられる要素。

<a>
<br>
<code>
<i>
<img>
<input>
<label>
<select>、
<span>
<strong>
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?