If you want a clean HTML / CSS solution, it's best to think of putting a class in the body that describes which tab should be highlighted and the identifier on each tab, and then customize the tabs using CSS.
So, for HTML, the About us page will have something like <body class="AboutUs"> , and the Home page will have a similar <body class="Home"> . Each tab will have unique identifiers like "aboutUs" and "home".
Then in CSS you can create it like this:
body.AboutUs tabs#aboutUs, body.Home tabs#home { }
source share