Skip to content Skip to sidebar Skip to footer

Horizontally Aligning Input Fields

I am trying to get an input field, and it's associated submit button on the same horizontal line, but proving to be a challenge. Here is my code:

Solution 1:

add this to your style.

#productSearchforminput {
    vertical-align: middle;
}

Solution 2:

for textfield:

float: left;

for the button:

margin-top: 2px;
float: right;

Post a Comment for "Horizontally Aligning Input Fields"