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, ∼3379🔥, 0💬
Popular Posts:
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...