CSS [attribute] Selector

Description »

<!DOCTYPE html>
<html>
<head>
<style>
a[target] {
background-color: yellow;
}
</style>
</head>
<body>

<h2>CSS [attribute] Selector</h2>
<p>The links with a target attribute gets a yellow background:</p>

<a href="https://agapomedia.com/">agapomedia.com</a>
<a href="https://agapomedia.com/" target="_blank">disney.com</a>
<a href="https://agapomedia.com/" target="_top">wikipedia.org</a>

</body>
</html>

Containers »

Outline
Image Unavailable
Click to view in closer detail!

Details »

Examples »

Try It on the CSS Zone Sandbox!

Base CSS »

Not defined in Base CSS.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License