About CSS Colors with Alpha Transparency

It is possible to set hex color codes with alpha transparency: set the alpha as the 7th and 8th characters. For example, to mark text selection with semi-transparent aqua background color, do this:

1
2
3
::selection {
    background: #C0FFEE7F;
}

Tips and Tricks CSS3