Reputation: 125
This is my code Link
Label {
float: left;
width: 150px;
text-align: right;
padding-right: 15px;
margin-top: 15px;
clear: left;
}
input, textarea{
margin-top: 15px;
}
#submit{
margin-left: 150px;
padding: 15px;
}
CSS is working fine on textboxes but dropdown boxes are not aligned properly. Can anyone tell me what i am doing wrong?
Upvotes: 0
Views: 45
Reputation: 22992
Add margin-top: 10px
to select
:
input:not(:last-child), textarea, select {
width: 200px;
}
select {
margin-top: 10px;
width: 210px;
}
Upvotes: 0
Reputation: 1459
Just add select in your class
input, textarea, select{
margin-top: 15px;}
Upvotes: 1