0

好的,所以我有这个菜单要做,它至少需要占页面的 100%(但不是实际的 css 100%,因为我有一些填充和边距,所以它变得太长)并且它必须增长如果屏幕尺寸太小而无法显示所有链接,则更大。

html:

<div id="menu">
    <a href="index.html"><button><img src="img/open.png"/><div>Acceuil</div></button></a>
    <a href="carte.html"><button><img src="img/toggled.png"/><div>La carte</div></button></a>
    <a href="traiteur.html"><button><img src="img/toggled.png"/><div>Service traiteur</div></button></a>
    <a href="reservation.html"><button><img src="img/toggled.png"/><div>Réservation</div></button></a>
    <a href="gite.html"><button><img src="img/toggled.png"/><div>Gîte</div></button></a>
</div>

CSS:

#menu{
    background-color: #850101;
    box-shadow: inset 0 0 25px rgba(0,0,0,.45);
    padding-top: 114px;
    margin-left: 5%;
    min-height: auto;
    display: block;
    height:auto;
    bottom:0;
    top:0;
    left:0;
    right:0;
    z-index: 1
}
#menu button{
    background-color: #640404;
    box-shadow: inset 0 0 25px rgba(0,0,0,.45);
    border: none;
    width: 100%;
    color: #fff;
    font-size: 30px;
    height: 60px;
    text-align: left;
    padding: 5 0;
    margin-bottom: 7px;
}
#menu button:hover{
    background-color: rgba(94,1,1,0);
}
#menu img{
    margin-right: 30px;
    padding-bottom: 2px;
    margin-left: 5px;
}
#menu button div{
    display: inline;
    position: absolute;
}
4

1 回答 1

2

box-sizing救援!

#menu {box-sizing: border-box; min-height: 100%; padding: whatever;}

前缀版本是:

  • -moz-box-sizing: border-box;
  • -webkit-box-sizing: border-box;

浏览器支持非常好。也可以很好地与 jQuery 搭配使用。

于 2012-09-27T17:33:16.663 回答