Сообщение от Golovastik
|
Хочу сделать чтоб именно вся область прямоугольника именно фон, закрашивался а не только ссылка
|
Как вариант...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
<style>
#box {
width: 200px;
}
#box > a {
display: block;
text-decoration: none;
}
#box > a:hover {
background-color: red;
}
</style>
</head>
<body>
<div id='box'>
<a href='#'>Test</a>
</div>
</body>
</html>