+ 2
How to make my two input boxes in two sides of the "hr" line?
3 ответов
+ 10
<input style=float:left;width:50px>
<hr style=display:inline-block;width:150px>
<input style=float:right;width:50px>
+ 5
It's not symettrical but..
hr{
width:1px;
height:30px;
display: inline;
margin: 5%;
}
input {
width: 30%;
margin: 0;
}
+ 2
tks!