Information
Getting a bit more complicated. Using a top left and top right span 'block' to chamfer the corners giving a tab effect.
See menueight_b for an unordered list version of this menu.
Cascading Style Sheet
#container {
position:relative;
}
#menu {
text-align:center;
position:relative;
height:8em;
}
.box {
position:relative;
float:left;
top:30px;
}
#menu a, #menu a:visited {
position:relative;
text-decoration:none;
background-color:#06a;
color:#fff;
display:block;
width:70px;
height:15px;
padding:5px;
margin:0 1px;
}
#menu a .topleft, #menu a .topright {
position:absolute;
top:0;
width:0;
height:0;
overflow:hidden;
border-top:10px solid #fff;
}
#menu a .topleft {
left:0;
border-right:10px solid #06a;
}
#menu a .topright {
left:70px;
border-left:10px solid #06a;
}
#menu a:hover {
background-color:#000;
}
#menu a:hover .topleft {
border-right:10px solid #000;
border-top:10px solid #fff;
}
#menu a:hover .topright {
border-left:10px solid #000;
border-top:10px solid #fff;
}
xhtml
<div id="container">
<div id="menu">
<div class="box">
<a href="#nogo">
Item 1
<span class="topleft"></span>
<span class="topright"></span>
</a>
</div>
<div class="box">
<a href="#nogo">
Item 2
<span class="topleft"></span>
<span class="topright"></span>
</a>
</div>
<div class="box">
<a href="#nogo">
Item 3
<span class="topleft"></span>
<span class="topright"></span>
</a>
</div>
<div class="box">
<a href="#nogo">
Item 4
<span class="topleft"></span>
<span class="topright"></span>
</a>
</div>
<div class="box">
<a href="#nogo">
Item 5
<span class="topleft"></span>
<span class="topright"></span>
</a>
</div>
</div>
</div>
back to example
Copyright
You may use this method on your personal 'non-profit' web site without seeking my permission. A link back to CSSplay is always appreciated.
Commercial usage is also permitted without seeking approval, but I would ask that a donation is considered to support my work on CSSPlay.
If you are having problems integrating any of my demonstrations into your website then I now offer a service to fault find and correct any errors that you may have introduced. Please email me for more information.
Recommended Sites
- UK Game Server Hosting
- web hosting, dedicated servers
web reseller, managed servers - SEO Company
SEO company based in Manchester - pay as you go e-commerce
Build your own SEO friendly webshop - Host Color
Web Hosting for 30 Websites - Web design in Dorset
Bournmouth based web design agency
"The Citroën UK web site uses
CSS Play code for the site drop down menus.
This code works seamlessly in IE 6 & 7, and is an excellent solution to the Creative requirements of the site."
Damon Clark - Brandwidth





