I want to remove the spaces between paragraphs so all my text doesn't have any kind of space between each other, but I don't know which proprety I should use.
I am aware of line-height, but tried messing around with different values and couldn't find the correct one.
Example code:
<style> p { margin:0; padding:0; font-size:60px; } div { margin:0; padding:0; background-color:red; } </style> <div> <p>test</p> <p>test</p> </div> Image of code (I want to remove the space between "test" and "test"):

line-height?line-height:1;maybe?