How could I have a transparent background in text field but I want the text inside the vale="" to show? is that possible
Here is my code HTML
<input type="text" name="firstname" required class="form-control" maxlength="150" value="first name">
CSS
input[type="text"]{
background: transparent;
border: 0px;
outline: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color:black;
}
Any help please