You can use the ISO code with the content property as a pure CSS solution for the closing or 'times' symbol. This is frequently used for:after or:before pseudo selectors.
The content code is \00d7.
Example
div:after{
display: inline-block;
content: "\00d7"; /* This will render the 'X' */
}
The pseudo selector can then be styled and positioned as desired.