CSS: Add Icon to Links

By Xah Lee. Date: . Last updated: .

You can add a little icon Favicon to links.

example

https://x.com/xah_lee

browser shows

xcom link icon 2024-08-05
xcom link icon 2024-08-05

Code

<a href="https://x.com/xah_lee">Xah Lee</a>
a[href*="x.com/"] {
 background: url("i/x.com_favicon.ico") no-repeat left center;
 padding-left: 38px;
}

CSS. Background

CSS. misc, advanced

CSS insert content