JSFiddle - React, Tailwind, and code Playground
by mmis1000
HTML
<div id='a1'>l1
<br/>l2</div>
<div id='a2'>l1
<br/>l2</div>
<div id='a3'>l1
<br/>l2</div>
<div id='a4'>l1
<br/>l2</div>
CSS
#a2::first-line {
color:blue !important;
}
#a3 {
color:yellow !important;
}
#a4::first-line {
color:blue !important;
}
#a4 {
color:yellow !important;
}
div::first-line {
color:red;
}
div {
color:green;
}