How to style asp.net dropdownlist

后端 未结 2 2056
深忆病人
深忆病人 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

    Try the following code

    HTML

    <asp:DropDownList ID="DropDownList1" runat="server" Width="120px" BackColor="#F6F1DB" ForeColor="#7d6754" Font-Names="Andalus" CssClass="ddl">
        <asp:ListItem Text="DEPART FROM"></asp:ListItem>
    </asp:DropDownList>
    

    CSS
    EDIT

    <style type="text/css">
            .ddl
            {
                border:2px solid #7d6754;
                border-radius:5px;
                padding:3px;
                -webkit-appearance: none; 
                background-image:url('Images/Arrowhead-Down-01.png');
                background-position:88px;
                background-repeat:no-repeat;
                text-indent: 0.01px;/*In Firefox*/
                text-overflow: '';/*In Firefox*/
            }
    </style>
    

    Check the screenshot which I got in Chrome also I am attaching the dropdown down arrow image(Arrowhead-Down-01.png).Hope this helps you.

    Screenshot

    enter image description here

    Arrowhead-Down-01.png

    enter image description here

    0 讨论(0)
  • 2021-02-06 01:51

    HTML select solution

    HTML

    <div class="styled-select">
      <select>
        <option>DEPART FROM</option>
        <option>DEPART TO</option>
        <option>DEPART AWAY</option>
      </select>
    </div>
    

    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;
       }
    
    0 讨论(0)
提交回复
热议问题