I have created text that is aligned using the "justify" option, and I would like to add some leading to the text. However, I want the first line of the text to remain at x:0px y:0px.
Does anyone know how to remove the line-height from the first line of a paragraph tag?
Check out this link for more information
body {
margin:0;
padding:0;
}
.test {
font-family:"verdana";
font-size:25px;
line-height:150px;
background:yellow;
}
p::first-line {
//line-height:0 !important; //this code doesn't seem to work
}
https://i.sstatic.net/FDmzr.jpg
EDIT: The solution needs to be compatible with all browsers,
p:first-line { DOESN'T WORK IN MOZILLA FIREFOX
line-height:100% !important;
}