I'm trying to make my input field resizable, but the code I found doesn't work anymore.
#mededeling
{
resize: both;
}
Does anybody know the most recent working code?
I'm trying to make my input field resizable, but the code I found doesn't work anymore.
#mededeling
{
resize: both;
}
Does anybody know the most recent working code?
<style>
input {
resize: horizontal;
width: 200px;
}
input:active {
width: auto;
}
input:focus {
min-width: 200px;
}
</style>