556 B
556 B
title, type, tags, author, cover, dateModified
| title | type | tags | author | cover | dateModified | |
|---|---|---|---|---|---|---|
| Style links with no text | snippet |
|
chalarangelo | metro-tunnel | 2022-11-11T05:00:00-04:00 |
Displays the link URL for links with no text.
- Use the
:emptypseudo-class to select links with no text. - Use the
:notpseudo-class to exclude links with text. - Use the
contentproperty and theattr()function to display the link URL in the::beforepseudo-element.
<a href="https://30secondsofcode.org"></a>
a[href^="http"]:empty::before {
content: attr(href);
}