The textbox border-style
is initialized to none
. But onfocus the border appears on the textBox. So, how to avoid the border appearance?
input[type="text"]{
border-style : none;
box-shadow : 0 0 0 0;
height : 3em;
width : 20em;
}
::-webkit-input-placeholder {
font-size : 16pt;
}
::-moz-placeholder {
font-size : 16pt;
}
<label for='text'>Enter some text</label><br>
<input type="text" placeholder="Enter text here">