Back
Input
1 2<input type="text" name="text" class="input">3<input type="text" name="text" class="input">4<input type="text" name="text" class="input">
1 2.input { 3 max-width: 190px; 4 width: 40px; 5 height: 40px; 6 outline: none; 7 margin: 5px; 8 transition: .5s; 9 border: none;10 border-radius: 10px;11 padding: 10px;12 text-align: center;13 overflow: hidden;14 white-space: nowrap;15 text-overflow: ellipsis;16 transform: rotate(90deg);17}18 19input:focus {20 width: 150px;21 transform: rotate(0);22}
MIT License