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 could try adding display: block to the text and then reduce the width by using 100% minus the letter-spacing.
.menuheader { text-align: right; display: block; letter-spacing: 1.1em; width: calc(100% - 1.1em); }