HTML&CSS - attribute selector
by Code_Garage
HTML
<a href="https://example.com" target="_blank">Un lien vers un nouvel onglet</a>
CSS
a[target="_blank"] {
color: red;
}
by Code_Garage
<a href="https://example.com" target="_blank">Un lien vers un nouvel onglet</a>
a[target="_blank"] {
color: red;
}