+ 2
How do I align this search box to the right?
2 Answers
+ 8
one option would be to wrap your input element with another element (div for example) and set its text-align:right
<div>
<input />
</div>
div{
text-align:right;
}
+ 2
try adding
float: right;