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