html - Menu - Align text middle with bottom aligned border -
this current code: http://jsfiddle.net/spadez/gmm2p/5/
can please tell me how can have text aligned vertically in middle of navbar have 3px blue bar @ bottom of navbar @ bottom of menu item on hover or active.
as example: http://dribbble.com/shots/1412015-restaurant-admin/attachments/206070
my code (without center align , blue bar on hover sitting high):
#header {background-color: white; padding: 0 100 0 100; height: 70px;} #nav {padding-left: 80px;} #nav a:hover {border-bottom: 3px solid blue;} #nav a:active {border-bottom: 3px solid blue;}
use following style #nav
#nav a:hover { border-bottom: 3px solid blue; padding-bottom: 23px; }
working demo here
Comments
Post a Comment