How to avoid line breaks between two p tags in html? If I write two p tags in succession
aaa
bbb
, then the output result will beIt’s too easy. .
<style> p{padding:0px; margin:0px;} </style> <p>aaa</p> <p>bbb</p>
But it is recommended not to use it this way. The existence of p is originally used as a paragraph. This is the so-called Semanticization. .
<span>aaa</span><span>bbb</span>
Use tags
will not break lines
The above is the detailed content of How to prevent line breaks between two p tags in html?. For more information, please follow other related articles on the PHP Chinese website!