Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"-webkit-appearance: none;" Firefox equivalent?

Tags:

html

css

I would like to know if there is anything equivalent to: -webkit-appearance: none; for Firefox?

What I want to achieve:

<select ...>
   <option>...</option>
   <more option>
</select>
like image 643
obinoob Avatar asked Apr 21 '11 18:04

obinoob


People also ask

What is WebKit appearance none in CSS?

The -webkit-appearance property in CSS is used by WebKit-based browsers such as Safari. Note that Firefox and Edge also support -webkit-appearance, for compatibility for some reasons. Although, -webkit-appearance property supported by some modern browsers but still there is a small difference.

What is WebKit appearance button?

The CSS -webkit-appearance property enables web authors to change the appearance of HTML elements to resemble native User Interface (UI) controls. The CSS -webkit-appearance property is a proprietary CSS extension that is supported by the WebKit browser engine.

What is CSS appearance?

The appearance CSS property is used to control native appearance of UI controls, that are based on operating system's theme.


1 Answers

The -moz-appearance CSS property is used in Gecko (Firefox) to display an element using a platform-native styling based on the operating system's theme.

Source:
Mozilla

like image 180
Web_Designer Avatar answered Sep 29 '22 04:09

Web_Designer