HTML: What's the correct form of BR?

2020-04-01 08:34发布

How is correct to write the br tag in html?

<br />

or

<br>

or anything else? :))

8条回答
叼着烟拽天下
2楼-- · 2020-04-01 09:09

You should use <br /> because it respect the standards XHTML, HTML and in general (XML). Because every xml tag needs to close.

查看更多
聊天终结者
3楼-- · 2020-04-01 09:19

It depends on the doctype you're using. In the original versions of HTML (up to HTML4), only <br> is correct. In XHTML (which is based on XML), only <br /> is correct. In HTML5, both are allowed although <br> is preferred.

查看更多
登录 后发表回答