公告
财富商城
积分规则
提问
发文
2020-04-01 08:34发布
欢心
How is correct to write the br tag in html?
br
html
<br />
or
<br>
or anything else? :))
You should use <br /> because it respect the standards XHTML, HTML and in general (XML). Because every xml tag needs to close.
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.
最多设置5个标签!
You should use
<br />
because it respect the standards XHTML, HTML and in general (XML). Because every xml tag needs to close.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.