So currently I'm trying to edit the general layout and look of html input forms. Heres a snippet of my code for my html input forms:
<p> <form action='register.php' method="POST"></p>
<p>First Name: <input type="text" name="firstName" />Last Name: <input type="text" name="lastName"/></p>
<p>Address: <input type="text" name="address" /></p>
<p>City: <input type="text" name="city" /></p>
And the css that edits this is:
#Address, #emailAddress, #password, #confirmPassword, #firstName, #lastName{
width:50%;
outline: double 1px #FFA500;
height:16px;
padding:10px;
}
Problem is, nothing changes with this code. Shouldn't this change my html input forms?