Different menu background color for each tab using CSS
I have used ul,li for tabs and used div for content.Add id for body tag.
Apply different background for particular tab.
Please share your comments and feedback.Thanks.Please subscribe my updates via email.
I have used ul,li for tabs and used div for content.Add id for body tag.
HTML
<body id="home">
<ul id="menu">
<li class="home"><a href="index.html">Home</a></li>
</ul>
</body>
<ul id="menu">
<li class="home"><a href="index.html">Home</a></li>
</ul>
</body>
Apply different background for particular tab.
CSS Code
body#home ul#menu {background:#B8860B}
body#home .content {background:#BDB76B}
body#home .content {background:#BDB76B}
No comments:
Post a Comment