How CSS sets the style of the first line of text in an object:
recommendation : As far as possible handwriting code, can effectively improve the learning efficiency and depth.
There may be times when you need to specifically set the style of the first line of text in the object, briefly below.
code example:
<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><Metaname= "Author"content= "http://www.softwhy.com/" /><title>Ant Tribe</title><styletype= "Text/css">Div{width:100px;Height:300px;Border:1px solid Red;}Div:first-line{Color:Red;}</style></Head><Body><Div>Hello everyone, Welcome to the Ant tribe, I hope you can give deliberate suggestions.</Div></Body></HTML>
The above code implements the style setting for the first line of text. Using the e:first-line property, this property is compatible with each browser.
The original address is: http://www.softwhy.com/forum.php?mod=viewthread&tid=4685
For more information, refer to: http://www.softwhy.com/divcss/
How CSS sets the style of the first line of text in an object