Here\'s the image in question of my HTML page. The text menu is inside a right aligned div, and has 1.2em letter spacing. Is there a pseudo-selector for this? I would not li
You can add an :after of your element and set a minus margin left equal as the letter-spacing
.menuheader { letter-spacing: 1.1em; } .menuheader:after { content:" "; margin-left: -1.1em; }
Tested on Chrome, Firefox and Edge