Add a text suffix to <input type=“number”>

前端 未结 4 815
盖世英雄少女心
盖世英雄少女心 2020-12-06 00:07

I currently have a number of inputs like this:


This input field is used to represent a va

4条回答
  •  没有蜡笔的小新
    2020-12-06 00:57

    If you have option to add elements to input then you can try this:

    .container {
      max-width: 208px;    /*adjust it*/
      margin: auto;
      position: relative;
      display: inline-block;
    }
    
    #milliseconds {
      padding-right: 35px;
    }
    
    .ms {
      position: absolute;
      top: 0;
      right: 10px;
    }
    ms

提交回复
热议问题