How can i place all the textboxes at the same left-margin?
This is the css:
this is the html:
This is the css:
Code:
p {
margin-left: 40px;
}
input {
margin-left: 150px;
}
this is the html:
Code:
<p>
Adress:<input type="text" name="T1" size="20"><br>
Name:<input type="text" name="T2" size="20"><br>
Age:<input type="text" name="T3" size="20">
</p>