How do you stop paragraph tags from skipping a line when after the </p> tag?
How to stop <p> tags from skipping a line?
Collapse
X
-
Do you really want to not skip a line? Or are you just not wanting to have a full line space?Originally posted by zerobladeHow do you stop paragraph tags from skipping a line when after the </p> tag?
If you don't want </p> to start a new line, then you can use "display: inline;" in your css for the p tag.
If you are just wanting to reduce the amount of space after the </p> tag, you should be able to set the margin-bottom in the css. -
What you are seeing is not a skipping of lines but just a natural margin between paragraphs. To remove that, in your CSS, just say p{margin:0}Comment
Comment