There is some text that is deployed at 90deg.
span { -webkit-font-smoothing: subpixel-antialiased; text-rendering: optimizeSpeed; backface-visibility: hidden; -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; -o-transition: all 1s ease-in-out; transition: all 1s ease-in-out; } /* Customizer */ .container { height: 2000px; background: #eee; } span { position: fixed; right: 1rem; top: 20%; font-size: 2rem; } <div class="container"> <span>some text</span> </div> Problem: Text is blurred, not displayed correctly.
Question: How can I correct the display of the text (and can it be corrected at all) so that it is clear and not "smeared" (vague)?
PS: In this example, it is always the same, in my project it is in this form, only when scrolling (when you stop scrolling the page - it is normally displayed).
font-familythen in my opinion the problem disappears codepen.io/Geyan/pen/YGvBky?editors=110 - user33274