我有一个小的移动导航按钮,可以在小屏幕上显示导航。这些天孩子们称它为“汉堡包”。它对我来说一直很好,但只是注意到它没有出现在 Firefox 中。它应该是一个“按钮”,因为它会触发一些 javaScript。我想,如果我让按钮显示:块;我可以把div放在里面。不是这样吗?
HTML
<button class="mobile-nav-button">
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</button> <!-- mobile-nav-button -->
CSS
.mobile-nav-button {
display: inline-block;
border: 0; outline: 0;
background: transparent;
width: 10em;
height: 10em;
}
.bar {
width: 100%;
float: left;
height: 22%;
margin-bottom: 17%;
background-color: #f06;
}
.bar:last-of-type {
margin-bottom: 0;
}