Reputation: 1622
Is there more reliable way to align this?
input[type=text] {
position: relative;
top: -5px;
}
<input type="range">
<input type="text">
Upvotes: 0
Views: 395
Reputation: 2446
as simple as this. vertical-align: middle;
input[type=range] {
vertical-align: middle;
}
<input type="range">
<input type="text">
Upvotes: 0
Reputation: 2321
Just set the range vertical align to middle
input[type=range] {
vertical-align: middle
}
input[type=range]{
vertical-align:middle;
}
<input>
<input type="range">
Upvotes: 1