Basic Input
how an input handles values that are two long
by Sarah Giles
HTML
<input type="text" value="Some long value that is too long to fit and overflows a lot">
CSS
input{
width: 100px;
text-overflow: ellipsis;
}
by Sarah Giles
<input type="text" value="Some long value that is too long to fit and overflows a lot">
input{
width: 100px;
text-overflow: ellipsis;
}