2018年3月28日 星期三

Bootstrap 中使 Footer 在最底下

<footer class="panel-footer"> <div class="container"> Testing 123 </div> </footer> html { position: relative; min-height: 100%; } body { margin-bottom: 100px; } footer { position: absolute; bottom: 0; width: 100%; height: 100px; } ------------------------ 第二種方法 轉自 使用Flexbox實現footer置底 body {     /*首先宣告我們要使用flex佈局*/  ...
Share:
Read More