Created
May 29, 2014 10:13
-
-
Save rodica-andronache/67ae2e2eafba3a608cc8 to your computer and use it in GitHub Desktop.
Centrare meniu (cu latime care nu este fixa)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://matthewjamestaylor.com/blog/beautiful-css-centered-menus-no-hacks-full-cross-browser-support | |
| <div id="centeredmenu"> | |
| <ul> | |
| <li><a href="#">Tab one</a></li> | |
| <li><a href="#" class="active">Tab two</a></li> | |
| <li><a href="#">Tab three</a></li> | |
| <li><a href="#">Tab four</a></li> | |
| </ul> | |
| </div> | |
| #centeredmenu { | |
| float:left; | |
| width:100%; | |
| background:#fff; | |
| border-bottom:4px solid #000; | |
| overflow:hidden; | |
| position:relative; | |
| } | |
| #centeredmenu ul { | |
| clear:left; | |
| float:left; | |
| list-style:none; | |
| margin:0; | |
| padding:0; | |
| position:relative; | |
| left:50%; | |
| text-align:center; | |
| } | |
| #centeredmenu ul li { | |
| display:block; | |
| float:left; | |
| list-style:none; | |
| margin:0; | |
| padding:0; | |
| position:relative; | |
| right:50%; | |
| } | |
| #centeredmenu ul li a { | |
| display:block; | |
| margin:0 0 0 1px; | |
| padding:3px 10px; | |
| background:#ddd; | |
| color:#000; | |
| text-decoration:none; | |
| line-height:1.3em; | |
| } | |
| #centeredmenu ul li a:hover { | |
| background:#369; | |
| color:#fff; | |
| } | |
| #centeredmenu ul li a.active, | |
| #centeredmenu ul li a.active:hover { | |
| color:#fff; | |
| background:#000; | |
| font-weight:bold; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment