CSS fill remaining width

后端 未结 7 1120
天命终不由人
天命终不由人 2020-11-27 05:32

I have this header bar.

7条回答
  •  甜味超标
    2020-11-27 06:09

    I would probably do something along the lines of

    with css

    div#search-logo-bar {
        padding-left:10%;
        background:#333 url(logo.png) no-repeat left center;
        background-size:10%;
    }
    input[type='text'] {
        display:block;
        width:100%;
    }
    

    DEMO

    http://jsfiddle.net/5MHnt/

提交回复
热议问题