For example, i want exact 9 characters (with no extra chars/whitespaces) in the text paragraph below with CSS. (i set width to 9rem, fontsize to 1rem below)
Tried letter-spacing, inline-block, monospace font etc without luck.
.texts {
display: inline-block;
width: 9rem;
font-size: 1rem;
font-family: monospace;
white-space: nowrap;
overflow: hidden;
border: 1px solid palevioletred;
padding: 0;
line-height: 1;
letter-spacing: 0;
}
<p class='texts'>ninechars with extra chars</p>