textarea label vertical-align: middle

前端 未结 5 1533
甜味超标
甜味超标 2021-02-14 02:45

I\'m trying to align the label for this text area in the middle of the text box, but it just isn\'t working. The output looks something like this:

          xxxx         


        
5条回答
  •  眼角桃花
    2021-02-14 03:24

    This will always work and you have the flexibility of placing the label at either; top, middle or bottom

    HTML:

    CSS:

    #mydiv{
        display: table-cell;
    }
    
    label, textarea{
        display: inline-block;
        vertical-align: middle; /** Can be switched to 'top' if you so wish **/
    }
    

提交回复
热议问题