Цитата:
|
Сообщение от alximik
Ну... сделал. ...
|
.лять

Код:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>test</title>
<style type="text/css">
UL{list-style:none;margin:0;}
LI{float:left;margin:0 10px 0 0;}
A{width:100px;height:40px;display:block;background:red;}
A:hover{background:#000;}
SPAN{display:none;}
.active A{background:blue;}
</style>
</head>
<body><script type="text/javascript"></script>
<ul>
<li><a href="1"><span>Текст</span></a></li>
<li><a href="2"><span>Текст</span></a></li>
<li class="active"><a title="3"><span>Текст</span></a></li>
<li><a href="4"><span>Текст</span></a></li>
<li><a href="5"><span>Текст</span></a></li>
</ul>
</body>
</html>
так, надеюсь, понятнее?