CSS: :after nbsp

by Palpatim

HTML

<h1>Simulated tight columns</h1>
<p>To be seen on a Mac running Safari (to be sure you get the same result than I).</p>
<div>
    <a class="openPage">Manque d’eau – Stress hydrique </a>
</div>

CSS

* {
        font-family: arial;
}

.openPage {
    position: relative;
}

.openPage:after {
	content: '◱';
	font-size: 11pt;
	line-height: 1.23em;
    position: absolute;
}

div {
    width: 115px;
    border: solid 1px red;
}