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

前端 未结 6 1950
长发绾君心
长发绾君心 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:52

    To align left and top you would have to set a smaller height and a padding-bottom:

    text-align: left;
    padding:  0.4em;
    padding-bottom:190px;
    width: 400px;
    height: 10px;
    

提交回复
热议问题