Helolo Every oie,
anyone have idea to how to remove right corner icon from select in full screen firefox.
Thanks
Helolo Every oie,
anyone have idea to how to remove right corner icon from select in full screen firefox.
Thanks
I have answered to such question here before.
The idea is to use a mask. http://codepen.io/gc-nomade/pen/nKuhs
You can even serve this CSS to only FF: http://codepen.io/anon/pen/retfC
@-moz-document url-prefix() {
div {
display:inline-block;
border:1px outset;
overflow:hidden;/*where no pseudo is used;*/
}
div.pseudo:before {
content:'';
text-align:center;
float:right;
width:1.2em;
margin-left:-1.1em;
height:1.3em;
background:white;
position:relative;
/* you may add
padding:inherit;
line-height:inherit;
background:inherit;
...
*/
}
select {
border:none;
margin-left:-1px;
}
}