how to make font lowercase scss code example
Example 1: text transform in css
<p >Initial String
<h2>Lorem ipsum dolor sit amet</h2>
</p>
<div class="heading">
This will be capitalize
</div>
.heading {
text-transform: capitalize;
}
text-transform: none;
text-transform: capitalize;
text-transform: uppercase;
text-transform: lowercase;
text-transform: full-width;
text-transform: full-size-kan
Example 2: input uppercase with css
<input oninput="let p = this.selectionStart; this.value = this.value.toUpperCase();this.setSelectionRange(p, p);" />