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

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

    Your padding is causing the text to begin 0.4em from the left hand side. If you want the text to be truly left-aligned, remove the padding on the left:

    .wideInput{
        text-align: left;
        padding: 0.4em 0.4em 0.4em 0;
        width: 400px;
        height: 200px;
    }
    

提交回复
热议问题