HTML:
<div>
abc
<input />
</div>
CSS:
div {
width:80%;
background-color:yellow;
}
input {
width:90%;
}
I would like to know if there is a pure CSS way to modify an input element width, adjusting to the available space left.
Thanks.