Tools, FAQ, Tutorials:
Closing XHTML 'br' Tags
What Is wrong with my <br> Tags?
✍: FYIcenter.com
If you are used HTML syntax, you may write your <br> tags
as in the paragramph below:
<p> I love the way you look at me,<br> Your eyes so bright and blue.<br> I love the way you kiss me,<br> Your lips so soft and smooth.<br> </p>
But that paragraph will be invalid as XHTML documents, because all 4 <br> are not closed. You should change it to:
<p> I love the way you look at me,<br/> Your eyes so bright and blue.<br/> I love the way you kiss me,<br/> Your lips so soft and smooth.<br/> </p>
Â
⇒HTML Tag and Attribute Syntax
⇒⇒HTML Tutorials
2017-02-20, 1000👍, 0💬
Popular Posts:
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
Where to see resource detailed information of my API Management Service on Azure Portal? Once you ha...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How to search for the first match of a regular expression using re.search()? The re.search() functio...