0
Is there a way to change the dimension of forms and the border color?
2 Respuestas
+ 2
Thank you. I had to create a class within the input tag before I was able to resize and style, As in;
HTML
<form><input type="text" name="name" class="five"/></form>
CSS
.five {
width: 35px;
height: 40px;
border-color: black;
}