Put search icon near textbox using bootstrap

前端 未结 5 1779
清酒与你
清酒与你 2020-12-02 08:51

I am using bootstrap by default textbox taking full width of column and I want to put search icon at the end to textbox.

My code is like this:



        
5条回答
  •  情歌与酒
    2020-12-02 09:17

    
    

    Here's the CSS for the image on the left:

    #funkystyling {
        background: white url(/path/to/icon.png) left no-repeat;
        padding-left: 17px;
    }
    

    And here's the CSS for the image on the right:

    #funkystyling {
        background: white url(/path/to/icon.png) right no-repeat;
        padding-right: 17px;
    }
    

提交回复
热议问题