Home >Web Front-end >CSS Tutorial >How Can I Capitalize the First Letter of Each Word in a Label Using CSS?
Is it possible to capitalize the first character in a label using CSS?
<a class="m_title" href="">gorr</a> <a class="m_title" href="">trro</a> <a class="m_title" href="">krro</a> <a class="m_title" href="">yrro</a> <a class="m_title" href="">gwwr</a>
To achieve this, CSS provides the text-transform property:
a.m_title { text-transform: capitalize; }
This property instructs the browser to capitalize the first character of each word within the m_title class.
<a class="m_title" href="">Gorr</a> <a class="m_title" href="">Trro</a> <a class="m_title" href="">Krro</a> <a class="m_title" href="">Yrr</a> <a class="m_title" href="">Gwwr</a>
The above is the detailed content of How Can I Capitalize the First Letter of Each Word in a Label Using CSS?. For more information, please follow other related articles on the PHP Chinese website!