This is my code
<li class="nav-item">
<a href="" class="nav-link" id="welcome">Welcome, {{request.user}}</a>
</li>
Is there a way of selecting the first letter of the user's name and capitalizing it with just CSS? Is it possible to do this in a way similar to selecting the first-letter and using the text-transform command?
Thank you in advance for any help. I'm new to web design and trying to avoid Javascript until I'm comfortable with CSS.
text-transform: capitalize?