I have a label before input with float: right. How to set position of label always in the middle of vertical align of input?
My css is below:
label {
width: 50px;
text-align: right;
display: inline-block;
}
input {
float: right;
height: 40px;
width: 200px;
}
And This is my html:
<div id='parent'>
<label id='caption'>Name</label>
<input type='text'/>
</div>