User1176561268 posted
Hello,
As you want that when mouse hover effect occures then if that menu containes submenu that should be arised so you can apply following code and in the same way i have written the technique to use in coments and try it may it can help you
<tr>
<td>
<ul id="nav"> <!--this nav is a id which would writen in CSS file -->
<li><a href="#">something</a></li>
<li><a href="#">something2</a>
<ul>
<li><a href="#"></a>something21</li>
<li><a href="#"></a>something22</li>
</ul>
</li>
</ul>
<td>
<tr>
CSS file code:
#nave
{ <!-- write your style which u wnt to apply here --> }
#nave li:hover
{ <!-- write your style which u wnt to apply here --> }
#nave li ul :hover
{ <!-- write your style which u wnt to apply here --> }
So, like this way you can get what you want actually.
---- PLEASE MARK AS ANSWER IF IT SOLVES YOUR QUERY ----