2019-10-19
Before after content characters
To make non alphabetically characters work inside content:
, you need to encode them to unicode. As they are hard to remember, here is a simple list.
.element:before {
/* Breaking space */
content: "\0020";
/* Non breaking space */
content: "\00a0";
}
Comments