How to make bevel and Embosed effect to button in CSS 3 for web-kit based browsers?

前端 未结 1 746
旧巷少年郎
旧巷少年郎 2020-12-22 19:00

How to make bevel and Embosed effect to Submit button in CSS 3 ?

Like this.

\"enter

相关标签:
1条回答
  • 2020-12-22 19:31

    This is possible without the use of extra mark-up through the use of multiple box-shadows:

    box-shadow: 
      0 1px 2px #fff, /*bottom external highlight*/
      0 -1px 1px #666, /*top external shadow*/ 
      inset 0 -1px 1px rgba(0,0,0,0.5), /*bottom internal shadow*/ 
      inset 0 1px 1px rgba(255,255,255,0.8); /*top internal highlight*/
    

    enter image description here

    http://jsfiddle.net/NPXfe/

    0 讨论(0)
提交回复
热议问题