当您将鼠标悬停在“工作”链接上时,我正在尝试模拟此站点上的弹出框:http: //zooadvertising.com.au/
弹出和鼠标悬停元素效果很好。我唯一不知道该怎么做的就是在弹出的元素中创建多个列。当我尝试在其中添加另一个 div 说,作为第二列向右浮动时,它会创建更多弹出窗口。有没有办法将 div 嵌套在这样样式的元素中?
编辑小提琴:http: //jsfiddle.net/7ZE8q/6/
CSS:
<style type="text/css" title="">
.NameHighlights {
position:relative;
}
.NameHighlights div {
display: none;
}
.NameHighlightsHover {
position:relative;
}
.NameHighlightsHover div {
display:block;
position:absolute;
width: 400px;
height: 300px;
top:30px;
left:-300px;
z-index:1000;
background-color: #000000;
padding: 15px;
font-size: 14px;
color: white;
}
</style>