I have a menu bar
- Home
- About Us
- Contact Us
and I've decorated the menu with a symbol like # Home # About Us # Contact #.
So, what I want to achieve is when I mouse over an item, the item color will be changed, as well as the symbols beside. For example:
# Home # About Us # Contact Us #
# Home # About Us # Contact Us #
# Home # About Us # Contact Us #
Anyway to achieve this? Prefer not using javascript solution, thanks.
** Updated with HTML markup as requested, just a dummy solution for placing the symbols.
I think most of you have misunderstanding my question, what I wanted is NOT how to hover a list item, I want to hover the symbols which are surrounding the item.
//html
<nav>
<ul>
<li># Home </li>
<li># About Us </li>
<li># Contact Us #</li>
</ul>
</nav>
//css
nav ul li {
display: inline-block;
}
nav ul li:hover {
font-weight: bold;
}
