我正在使用 Zurb Css 框架,如foundation.zurb.com/docs/forms.php中所述,我使用了与下面提供的相同的代码
<label for="customDropdown">Dropdown Label</label>
<select style="display:none;" id="customDropdown">
<option SELECTED>This is a dropdown</option>
<option>This is another option</option>
<option>Look, a third option</option>
</select>
<div class="custom dropdown">
<a href="#" class="current">This is a dropdown</a>
<a href="#" class="selector"></a>
<ul>
<li>This is a dropdown</li>
<li>This is another option</li>
<li>Look, a third option</li>
</ul>
</div>
但我看不到任何下拉菜单,上面的代码是从他们的网站复制粘贴的。
谢谢你。