I'm trying to understand CSS mechanism but tutorials so far haven't been a great source. They only scratch the surface.
I need to understand the fundamental differences between using #navlist li #current and #navlist li .current.
The names are not generic in order to be a very practical example.
What I think the different is:
#navlist li #current
if applied to an li element inside a parent element #navlist will bypass any inherited format to display #navlist li #current format.
On the other hand:
#navlist li .current
will apply its format but also inherit from other format.
In this example:
<ul id="navlist">
<li><a href="#" class="current">Home</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Destinations</a></li>
<li><a href="#">Discuss</a></li>
</ul>
with a CSS like this:
#navlist li a:hover
{
color: #FFFFFF;
background: #3364BB;
border-color: #0F3974;
}
#navlist li .current
{
color: #000;
background: #FFFFFF;
border-bottom: 1px solid #FFFFFF;
}
The tab will be white with a black font but hover will be applied.
With this other example:
<ul id="navlist">
<li><a href="#" id="current">Home</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Destinations</a></li>
<li><a href="#">Discuss</a></li>
</ul>
and CSS:
#navlist li a:hover
{
color: #FFFFFF;
background: #3364BB;
border-color: #0F3974;
}
#navlist li #current
{
color: #000;
background: #FFFFFF;
border-bottom: 1px solid #FFFFFF;
}
#current is applied and nothing else, leaving the tab white even if the mouse hover over it.
Is that right?