Appearance Property In CSS3
It is used to make an element look like a User Interface Element. It has the following values:
- Normal
- Window
- icon
- button
- menu
- field
Ex:
- <html>
-
- <head>
- <style type="text/css">
- div {
- appearance: button;
- -webkit-appearance: button;
-
- -moz-appearance: button;
-
- }
- </style>
- </head>
-
- <body>
- <div>C-SharpCorner</div>
- </body>
-
- </html>
Note: It shows the div like a Button