CSS make textbox fill all available width

前端 未结 7 1373
太阳男子
太阳男子 2021-02-12 09:33

I have the following \"line\" in my web page

\"Some Text\" \"Some more text\"
7条回答
  •  盖世英雄少女心
    2021-02-12 10:33

    Here is what worked for me. Note that in some cases I had to use   between items otherwise it fell to the next line.

    .flexContainer {
        display: flex;
        width:100%;
    }
    input {
        width: 100%;
    }
    text:   

提交回复
热议问题