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, ∼2517🔥, 0💬
Popular Posts:
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
How To Pass Arrays By References? in PHP? Like normal variables, you can pass an array by reference ...
How to start Docker Daemon, "dockerd", on CentOS systems? If you have installed Docker on your CentO...
What is test testing area for? The testing area is provided to allow visitors to post testing commen...
Where to find tutorials on Using Azure API Management Developer Portal? Here is a list of tutorials ...