您可以使用::before伪选择器,如下所示:
blockquote {
text-align: center;
font-weight: bold;
font-style: italic;
color: darkblue;
}
blockquote::before {
display: block;
width: 1.5em;
height: 1.5em;
margin: 1em auto;
content: url("https://upload.wikimedia.org/wikipedia/commons/2/25/Quote_left_font_awesome.svg");
}Run Code Online (Sandbox Code Playgroud)
<blockquote>
Parties prenantes de cette organisation (marchande ou non-marchande) par rapport aux attentes et besoins
</blockquote>Run Code Online (Sandbox Code Playgroud)
为了使它更像SCSS:
blockquote {
text-align: center;
font-weight: bold;
font-style: italic;
color: darkblue;
&::before {
display: block;
width: 1.5em;
height: 1.5em;
margin: 1em auto;
content: url("https://upload.wikimedia.org/wikipedia/commons/2/25/Quote_left_font_awesome.svg");
}
}
Run Code Online (Sandbox Code Playgroud)