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 paragraph 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>
2024-03-23, ∼3146🔥, 0💬
Popular Posts:
How to create a new API on the Publisher Dashboard of an Azure API Management Service? If you are ne...
How to reinstall npm with a node version manager? I am getting permission errors with the current ve...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
How to enter & sign in '@(...)' expressions? & signs can be entered in '@(...)' expr...
What is Fabric CA (Certificate Authority)? Fabric CA (Certificate Authority) is a component of Hyper...