
Untitled
By: a guest on
May 7th, 2012 | syntax:
None | size: 1.21 KB | hits: 15 | expires: Never
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<style type="text/css">
html, body {
width: 100%;
height: 100%;
margin: 0;
border: 0;
padding: 0;
}
#menu ul {
list-style-type: none;
}
#menu > ul > li {
float: left;
padding-left: 10px;
}
li > ul {
display: none;
}
ul:hover > li:hover > ul {
display: block;
}
ul:hover > li:hover {
font-weight: bold;
}
ul:hover > li:hover > ul {
font-weight: normal;
}
</style>
</head>
<body>
<div id="menu">
<ul>
<li>File
<ul>
<li>New
<ul>
<li>Folder
<li>File
</ul>
<li>Open
<li>Save
<li>Close
<li>Import
<li>Export
</ul>
</ul>
<ul>
<li>Edit
<ul>
<li>Copy
<li>Cut
<li>Paste
</ul>
</ul>
<ul>
<li>View
<ul>
<li>Web
<li>Print
</ul>
</ul>
</div>
</body>
</html>