<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../lib/w3.css">
<body class="w3-container">
<h2>Hoverable Buttons</h2>
<p>By default, buttons have a shadow effect on hover:</p>
<p><button class="w3-btn">Default Button</button></p>
<p><button class="w3-btn w3-hover-none">Hover None</button></p>
<p><button class="w3-btn w3-hover-none w3-hover-red">Hover none and hover red</button></p>
<p><button class="w3-btn w3-hover-none w3-hover-black">Hover none and hover black</button></p>
<hr>
<h2>Hoverable Navbar</h2>
<p>By default, links in a navbar gets a grey background-color on hover.</p>
<ul class="w3-navbar w3-border w3-light-grey">
<li><a href="tryit.asp-filename=tryw3css_ref_hover_none.html#">Default (gray)</a></li>
<li><a href="tryit.asp-filename=tryw3css_ref_hover_none.html#" class="w3-hover-none" >Hover None</a></li>
<li><a class="w3-hover-teal" href="tryit.asp-filename=tryw3css_ref_hover_none.html#">Hover Teal</a></li>
</ul>
</body>
</html>