Posts Tagged ‘Create MENU’

Create a simple MENU in CSS

Tuesday, October 30th, 2007

Today we create a simple MENU in CSS. Click here to see the final result!

[1] Let’s to create the CSS:

<style type=”text/css”>
body {
text-align: left;
background-image: url(”bg.gif”);
}
div {
width: 100px;
height: 20px;
background-color: #338ce8;
}
div:hover
{
background-color: #085ea6;
}
a {
color: white;
font-size: 18px;
text-decoration: none;
}
</style>

(more…)