gpt4 book ai didi

html - 不同设备底部的按钮组

转载 作者:行者123 更新时间:2023-11-28 07:59:01 27 4
gpt4 key购买 nike

我正在为移动设备做设计,我必须考虑不同的设备。我在页面底部放置了一个按钮组。这意味着按钮出现在滚动条的末尾。但是,当页面因为设备太大而太小时,按钮会出现在页面中间。在那之后,有空白。我尝试使用以下规则:How to put the footer at the bottom of the visible page?但是按钮总是出现在屏幕的底部。使用滚动条后,我需要查看按钮。

HTML

<div id="botoneraInternet" class="btn-group btn-group-justified" role="group" aria-label="...">
<div class="btn-group btn-group-lg" role="group">
<button type="button" class="btn btn-default" id="botonHardware" disabled="" style="background-color: rgb(48, 144, 184);">
<span><img class="icons" src="imagenes/llave.png"></span> Hardware
</button>
</div>

<div class="btn-group btn-group-lg" role="group">
<button type="button" class="btn btn-default" id="botonClose" style="background-color: rgb(223, 228, 229);">
<span><img class="icons" src="imagenes/valija.png"></span> Cerrar WO
</button>
</div>
</div>

CSS

.btn-group {
position: relative;
vertical-align: middle;
}
.btn-group-justified {
display: table;
width: 100%;
table-layout: fixed;
border-collapse: separate;
}

有人可以帮助我吗?非常感谢,我会给最佳答案打星。

最佳答案

试试这个....您提供的代码不够多,所以我即兴创作了一点。但请告诉我这是否是您需要的。

http://codepen.io/carinlynchin/pen/WvbLXE

CSS:

body{
height:900px;
position:relative;
}

.btn-group {
position: absolute;
width:100%;
bottom:0
}

.btn-group div {
display:inline;
}

HTML:

<div id="botoneraInternet" class="btn-group btn-group-justified" role="group" aria-label="...">
<div role="group">
<button type="button" class="btn btn-default" id="botonHardware" disabled="" style="background-color: rgb(48, 144, 184);">
<span><img class="icons" src="http://barkpost-assets.s3.amazonaws.com/wp-content/uploads/2013/11/grumpy-dog-11.jpg"></span> Hardware
</button>
</div>

<div role="group">
<button type="button" class="btn btn-default" id="botonClose" style="background-color: rgb(223, 228, 229);">
<span><img class="icons" src="https://pbs.twimg.com/profile_images/3540744128/7dd80644ae052f1b04180c41bbc674ab.png"></span> Cerrar WO
</button>
</div>
</div>

关于html - 不同设备底部的按钮组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29924173/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com