How to style asp.net dropdownlist

后端 未结 2 2058
深忆病人
深忆病人 2021-02-06 00:59

You may feel it is a repeated question, but I have a Asp:DropDownList which needs to be styled like the below picture.

I browsed through Google and some sites (mentioned

2条回答
  •  迷失自我
    2021-02-06 01:51

    HTML select solution

    HTML

    CSS

      .styled-select {
       width: 150px;
       height: 30px;
       overflow: hidden;
       background: url('Images/Arrowhead-Down-01.png') no-repeat right #F6F1DB;
       border: 2px solid #7d6754;
       border-radius: 5px;
       }
    
       .styled-select select {
       background: transparent;
       width: 180px;
       padding: 3px;
       font-size: 16px;
       line-height: 1;
       border: 0;
       border-radius: 0;
       height: 30px;
       -webkit-appearance: none;
       font-family:Andalus;
       color:#7d6754;
       }
    

提交回复
热议问题