我正在尝试从我已经拥有的导航栏中创建一个“悬停下拉”导航框。
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Skeleton Application') ?></a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="<?php echo $this->url('home') ?>"><?php echo $this->translate('Home') ?></a>
</li>
<li><a href="<?php echo $this->url('zfcuser') ?>"><?php echo $this->translate('My Account') ?></a>
<ul>
<li><a
href="<?php echo $this->url('zfcuser/change-password') ?>"><?php echo $this->translate('Change Password') ?></a>
<li><a href="<?php echo $this->url('zfcuser/change-email') ?>"><?php echo $this->translate('Change Email') ?></a>
</ul></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
</div>
</div>
它的 CSS 会是什么样子?我脑子里有一些东西,但在实践中并没有奏效。