CodeLab
Show Output
 
xxxxxxxxxx
22
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Example of CSS ::first-line Pseudo-element</title>
6
<style> 
7
    p::first-line {
8
        color: #ff0000;
9
        font-variant: small-caps;
10
    }
11
</style>
12
</head>
13
<body>        
14
    <p>
15
        The first line of this paragraph is styled differently form the rest of line.
16
        The first line of this paragraph is styled differently form the rest of line.
17
        The first line of this paragraph is styled differently form the rest of line.
18
        The first line of this paragraph is styled differently form the rest of line.
19
        The first line of this paragraph is styled differently form the rest of line.
20
    </p>
21
</body>
22
</html>
 

在微博、微信、公众号、小程序分享此示例。 如果您觉得有帮助,请给我们一个赞。