I'm having a problem with the text input, can it be made 'adaptive'? If I add the input are width, there will be too much unnecessary space in the left side. Again, if it's not wide enough, you can't see the whole input.
input[type="text"]{
max-width: 50px;
border: none;
background: transparent;
font-size: 20px;
color: whitesmoke;
padding: 5px;
font-weight: bold;
}
<input type="text" id="answer5" disabled="disabled"/>
Is there a way to make the area 'adaptive'? So if the answer is just 1, the text in the right is closer to the number, and if the answer is longer, you could see the whole answer.
thanks

