I recently created an input form and applied the CSS property text-transform: uppercase;
#textbox {
outline:none;
background:#732ab7;
caret-color:lightgreen;
border-style:groove;
border-width:0px 0px 10px 0px;
border-top:none;
border-left:none;
border-right:none;
border-bottom-color:lightgreen;
padding:0px 0px 2px 15px;
text-transform: lowercase;
}
However, even though I set the placeholder as "Name," when viewed on the webpage it displays as "NAME," which looks out of place. Here is how the HTML input tag is structured:
<input hspace="32px" vspace="70px" id="textbox" type="text" placeholder="Name"></input>