Text doesn't start from the left top of input text field

前端 未结 6 1934
长发绾君心
长发绾君心 2021-01-04 01:35

I have an input field with a fixed height. The text is vertically centered, but I want it at the top left of the input.

CSS

.wideInput{
    text-ali         


        
6条回答
  •  没有蜡笔的小新
    2021-01-04 01:51

    if what that than remove padding: 0.4em; and set

    padding-left:0;
    padding-top:0;
    padding-bottom:0.4em;
    padding-right: 0.4em;
    

    After doing change change class name here

    
    

    instead of longInput it will be wideInput


    Update

    JsFiddle demo with TextArea

    this will work with textarea only because input is just allow to enter value in one line i.e no enter keyallowed or it doent wrap long text , it just add data in one line

提交回复
热议问题