Input text font size test

by karlovac

HTML

<div class="container">
  <div class="numberCell">
    <input type="text" class="cellInput" maxlength="1" value="ho asdkfjaf 
    a h">
  </div>
</div>

CSS

.container {
  font-size: 36px;
}

.numberCell {
  width: 1.39em;
  height: 1.39em;
}

.cellInput {
  font-size: 1em;
  width: 100%;
  height: 100%;
  background-color: yellow;
}