Сообщение от rafka1
|
ну тогда ведь при наведении на желаемую часть картинки ничего всплывать не будет....так как ховер применен совсем к другому элементу....
|
можно, например, так
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>demo</title>
<style>
p {
background: green;
width: 200px;
height: 200px;
margin: 0;
}
div {
position: absolute;
width: 130px;
height: 70px;
left: 30px;
top: 30px;
background: red;
cursor: pointer;
}
h4 {
background: blue;
display: none;
}
div:hover + h4 {
display: block;
}
</style>
</head>
<body>
<p>Большой элемент</p>
<div>область над ним</div>
<h4>Что-то всплывающее</h4>
</body>
</html>