Can I create a Mac like menu in CSS 3?
See the menu where it says Home. Can this menu bar be replicated 开发者_如何学编程using CSS 3 only?
Yes, it's possible using
- rounded corders
- gradients
- border
- text shadow
Checkout a full example.
Easily. For example, you could do a horizonal ul
with a gray-gradient background and a class that has something like background: #b3c0d0
, border-radius: 10px
and color: white
.
精彩评论