display: -webkit-box; 盒子模型布局header和footer上下固定

本文探讨了如何使用display: -webkit-box属性在CSS中实现一个特殊的盒子模型布局,使得header始终保持在顶部,footer始终保持在底部。这种布局方式在响应式设计中十分有用,确保在不同屏幕尺寸下内容区域依然能够正常显示。
摘要由CSDN通过智能技术生成
	<style>
    html,
    body {
      height: 100%; /* 要有高度 */
    }

    * {
      margin: 0;
      padding: 0;
      list-style: none;
      text-align: center;
    }

    .outBox {
      display: -webkit-box;  /* 必要 */
      -webkit-box-orient: vertical; /* 排列方式 */
      height: 100%;
    }

    .inBox {
      -webkit-box-flex: 1; /* 必要 */
      overflow: auto; /* 必要 */
      background-color: #ccc;
    }

    header,
    footer {
      width: 100%;
      height: 50px;
      line-height: 50px;
      background: #999;
    }

    li {
      height: 40px;
      line-height: 40px;
    }

    li:nth-child(2n+1) {
      background: #efefef;
    }
  </style>
<div class="outBox">
    <header>头部</header>
    <ul class="inBox
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值