Add new css snippets

This commit is contained in:
Angelos Chalaris
2022-10-29 16:17:16 +03:00
parent d6887e4b3a
commit 38468678f5
3 changed files with 89 additions and 0 deletions

View File

@ -0,0 +1,24 @@
---
title: Style links with no text
tags: visual
expertise: beginner
author: chalarangelo
cover: blog_images/metro-tunnel.jpg
firstSeen: 2022-11-11T05:00:00-04:00
---
Displays the link URL for links with no text.
- Use the `:empty` pseudo-class to select links with no text.
- Use the `:not` pseudo-class to exclude links with text.
- Use the `content` property and the `attr()` function to display the link URL in the `:before` pseudo-element.
```html
<a href="https://30secondsofcode.org"></a>
```
```css
a[href^="http"]:empty:before {
content: attr(href);
}
```