CodeLab
Show Output
 
xxxxxxxxxx
20
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Example of attribute selector</title>
6
<style>
7
    [class*="warning"] {
8
        color: #fff;
9
        background: red;
10
    }
11
</style>
12
</head>
13
<body>
14
    <p class="warning">The style will apply to this paragraph.</p>
15
    <p class="alert warning">The style will also apply to this paragraph.</p>
16
    <p class="alert-warning">The style will also apply to this paragraph.</p>
17
    <p class="alert_warning">The style will also apply to this paragraph.</p>
18
    <p class="highlight">The style will not apply to this paragraph.</p>
19
</body>
20
</html>
 

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