### <a name="appearance"></a> &#8226; appearance
**Summary:**

Allows changing the style of any element to platform-based interface elements or vice versa.

Resources: **[WebPlatform](http://docs.webplatform.org/wiki/css/properties/appearance)**, **[CSS-Tricks](http://css-tricks.com/almanac/properties/a/appearance/)**

**Syntax:**

Default value: none

    .appearance(<appearance>)
  
**Example:**

    div {
     .appearance();
    }
    
    // Result
    div {
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
    } 


