Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Down arrow icon in Select Tag

Hi I would like to know how I put to the following code: http://jsfiddle.net/Torrecilla/Yv6zx/3/

This arrow to the right: select arrow

Is it possible? I could not figure it out

<select name="cats" id="cats">
  <option value="">All the Categories</option>
  <option value="">Cat 1</option>
  <option value="">Cat 2</option>
  <option value="">...</option>
</select>​

CSS

body {
    margin-top:20px;
    margin-left:20px;
}
select {
    padding:3px;
    margin: 0;
    border-radius:4px;
    -webkit-box-shadow: 
        0 0px 0 #ccc,
        0 0px #fff inset;
    background: -moz-linear-gradient(top, #FBFBFB 0%, #E9E9E9 100%);background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBFBFB), color-stop(100%,#E9E9E9));
    color:black;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none; 
    cursor:pointer;
    border: 1px solid #ccc;
}
like image 373
user1871352 Avatar asked Dec 13 '25 10:12

user1871352


1 Answers

Yes it is possible! Try this:

CSS:

background: url('http://i45.tinypic.com/309nb74.png') no-repeat right, -moz-linear-gradient(top, #FBFBFB 0%, #E9E9E9 100%);
background: url('http://i45.tinypic.com/309nb74.png') no-repeat right, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FBFBFB), color-stop(100%,#E9E9E9));

You will need to adjust the padding, but you get the idea.

DEMO:

http://jsfiddle.net/Yv6zx/24/

like image 107
Dom Avatar answered Dec 16 '25 15:12

Dom



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!