Je veux aligner un <span>
et l'élément <input>
élément de texte. La hauteur de <input>
y <span>
doivent être identiques, les bordures supérieure et inférieure doivent être sur la même ligne et le texte à l'intérieur de l'élément <input>
y <span>
doivent être sur la même ligne.
.cnt {
margin: 5px;
}
.one {
background-color: #ffffff;
border: solid 1px #ADADAD;
height: 17px;
}
.two {
background-color: #ffffff;
border: solid 1px #ADADAD;
height: 17px;
}
.in {
background-color: #ffffff;
border: solid 1px #ADADAD;
height: 17px;
}
input {
padding: 0;
}
<div class="cnt">
<label>
<span class="one">Test in Span</span>
<span class="two">Span in test</span>
</label>
<input class="in" value="mmmnnnxx" type="text" />
</div>
https://jsfiddle.net/ajo4boom/
Comment faire ce que je veux ?