Сообщение от jQuery2011
|
Как можно это исправить ?
|
Как вариант... И без скриптов.
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#txt {
position: relative;
height: 20px;
border: 1px solid;
}
#box {
position: absolute;
top: 100%;
left: 0;
width: 100px;
height: 100px;
background-color: orange;
display: none;
}
#txt:hover > #box {
display: block;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id='txt'>
<div id='box'></div>
</div>
</body>
</html>
Т.е. появляющийся элемент должен быть внутри элемента, который его сделал видимым...