【发布时间】:2017-12-13 19:05:12
【问题描述】:
当我在手机上查看面板时,我正试图将面板移动到屏幕底部,但我的代码无法解决问题。我怎样才能做到这一点?
.panel {
background: white;
height: 50%;
position: fixed;
right: 15px;
width: 25%;
padding-left: 20px;
}
@media (min-width: 458px) {
.my_panel {
width: 100%;
}
}
<div class="container col-md-4 col-md-offset-0 panel">
<div style="overflow:scroll; height:70%" class="my_panel">
<table class="table">
<thead>
<tr>
<th></th>
</tr>
</thead>
</table>
<a href=""><button type="submit" class="btn" id="btnAdd" style=" position:fixed; bottom:290px; right:20px">Add</button></a>
</div>
</div>
【问题讨论】:
标签: html css media-queries