我正在构建一个 VF 页面,以便轻松浏览自定义报告。我刚刚开始学习代码,并且可以使用额外的眼睛来帮助识别我的错误。
两个问题是:
悬停时菜单的第三层没有出现(我尝试了多种css代码组合)
初始链接在 iFrame 中打开,但后面的第二个链接作为单独的选项卡打开。
CSS
.top head {font-size: 40px; text-align: center; font-family: Verdana, sans-serif;}
.nav ul {list-style: none; margin: 0px; font-family: verdana, sans-serif; text-align: center;}
.nav li {float:left; width:200px background-color:#444444; text-align: center;
boarder-right:1px solid white; position:relative; height:30px; line-height:30px;}
.nav li ul li {float:none; width:200px; text-align:center; padding-left:5px; boarder-tip:1px solid white;}
.nav a {text-decoration:none; color:black; text-align: center;}
.nav li ul {position:absolute; top:30px; left:0; visibility:hidden;}
.nav li:hover {background-color:yellow;}
.nav li:hover ul {visibility:visible;}
HTML
<div class="nav">
<ul>
<li>
<a> Summary </a>
<ul>
<li><a href="www" target="theIframe">Volume </a></li>
<ul>
<li><a href="www" target="theIframe">Overall</a></li>
</ul>
<li><a href="www" target="theIframe"> ASP </a></li>
</ul>
</ul>
</div>
<br/>
<iframe src="www" scrolling="true" id="theIframe" width="90%" align="center"/>