すべてのHTML要素には、それがどのタイプの要素であるかに応じてデフォルトの表示値があります。
2つの表示値は、ブロックとインラインです。
ブロックレベルの要素
ブロックレベルの要素は常に新しい行から始まり、使用可能な全幅を占めます(可能な限り左右に伸びます)。
<div> 要素はブロックレベルの要素です。
例文
<div>Hello World</div>
HTMLのブロックレベル要素:
<address>
<article>
<aside>
<blockquote>
<canvas>
<dd>
<div>
<dl>
<dt>
<fieldset>
<figcaption>
<figure>
<footer>
<form>
<h1>-<h6>
<header>
<hr>
<li>
<main>
<nav>
<noscript>
<ol>
<p>
<pre>
<section>
<table>
<tfoot>
<ul>
<video>
インライン要素
インライン要素は新しい行で始まらず、必要なだけの幅を占めます。
これは段落内のインライン <span> です。
例文
<span>Hello World</span>
Inline elements in HTML:
<a>
<abbr>
<acronym>
<b>
<bdo>
<big>
<br>
<button>
<cite>
<code>
<dfn>
<em>
<i>
<img>
<input>
<kbd>
<label>
<map>
<object>
<output>
<q>
<samp>
<script>
<select>
<small>
<span>
<strong>
<sub>
<sup>
<textarea>
<time>
<tt>
<var>
スポンサーリンク
<div> 要素
<div>
要素は他のHTML要素のコンテナとしてよく使用されます。
<div>
要素には属性は必要ありませんが、 style
, class
と id
は共通しています。
CSSと一緒に使用すると、 <div>
要素をコンテンツブロックのスタイルに使用できます。:
例文
<div style=”background-color:black;color:white;padding:20px;”>
<h2>London</h2>
<p>London is the capital city of England. It is the most populous city in the United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
</div>
<span> 要素
この <span>
要素はいくつかのテキストのコンテナとしてよく使われます。
The <span>
要素には属性は必要ありませんが、 style
, class
と id
は共通です。
CSSと一緒に使用すると、 <span>
要素をテキストの一部のスタイルに使用できます。:
例文
<h1>My <span style=”color:red”>Important</span> Heading</h1>
スポンサーリンク
HTML グループ化タグ
タグ | 説明 |
---|---|
<div> | 文書内のセクションを定義します(ブロックレベル) |
<span> | 文書内のセクションを定義します(インライン) |
利用可能なすべてのHTMLタグのリストは HTML Tag 辞典を確認ください