Appearance Property In CSS3

It is used to make an element look like a User Interface Element. It has the following values:
  1. Normal
  2. Window
  3. icon
  4. button
  5. menu
  6. field
Ex:
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. div {
  5. appearance: button;
  6. -webkit-appearance: button;
  7. /* For Safari and Chrome */
  8. -moz-appearance: button;
  9. /* For Firefox */
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <div>C-SharpCorner</div>
  15. </body>
  16. </html>
Note: It shows the div like a Button
1234555.png