CSS label text right below input element

后端 未结 4 1965
一个人的身影
一个人的身影 2021-02-05 10:08

I have input text\'s and label tags. I can\'t figure out the CSS to get the label text to align right below the input text. Here\'s a snippet of the HT

4条回答
  •  -上瘾入骨i
    2021-02-05 10:34

    Use a table (one input/label pair per cell) or left-floating divs (one input/label pair per div). Example:


    CSS:

    div.pair {
        float:left;
    }
    

提交回复
热议问题