3
3

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要素の省略できるもの、できないもの

Last updated at Posted at 2016-09-21

htmlタグは省略できるものもあります。

たとえば、li要素です。

<ul>
  <li></li>
</ul>

上はもちろん表示される。
下でもちゃんと表示されます。

<ul>
  <li>
</ul>

何が省略できて、何が省略できないのか、把握したかったので、一覧にしてみました。

■開始tag、終了tag両方省略できる要素

body
head
html
tbody

■終了tagがそもそもない

area
b
br
col
embed
hr
img
input
keygen
link
meta
param
source
track
wbr

■終了tagのみ省略できる要素

colgroup
dd
dt
li
optgroup
option
p
rb
rp
rt
rtc
td
tfoot
thead
th
tr

■省略できない要素

a
abbr
address
article
aside
audio
b
bdi
bdo
blockquote
button
canvas
caption
cite
code
data
datalist
del
dfn
div
dl
em
fieldset
figcaption
figure
footer
form
h1, h2, h3, h4, h5, h6
header
i
iframe
ins
kbd
label
legend
main
map
mark
meter
nav
noscript
object
ol
output
pre
progress
q
ruby
s
samp
script
section
select
small
span
strong
style
sub,sup
table
template
textarea
time
title
u
ul
var
video

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?