日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

解决fixed在苹果手机抖动问题/头部底部固定布局

發(fā)布時間:2025/7/14 编程问答 45 豆豆
生活随笔 收集整理的這篇文章主要介紹了 解决fixed在苹果手机抖动问题/头部底部固定布局 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
1、頭部和底部固定,中間內(nèi)容滾動,不涉及fixed

1)absolute與height:100%

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  <title></title>
  <style>
    html{height: 100%;}
    body{padding:0px;margin:0px;overflow: hidden;height: 100%;}
    header{height: 50px;line-height: 50px;background: red;text-align: center;}
    section{height: 100%;overflow-y: auto;}
    .content{padding-bottom: 100px;}
    footer{height: 50px;line-height: 50px;background: red;position: absolute;width: 100%;bottom: 0px;text-align: center;}
  </style>
</head>
<body>
  <header>我是頭部</header>
  <section>
    <div class="content"></div>
  </section>
  <footer>我是底部</footer>
</body>
</html>

2) flex與?height: 100vh

?

?<!DOCTYPE html>

<html>
<head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> <style> body { margin: 0px; padding: 0px; } .main { display: flex; flex-direction: column; height: 100vh; } header { height: 50px; line-height: 50px; background: #ddd; text-align: center; } section { overflow-y: auto; } footer { height: 50px; line-height: 50px; background: #ddd; width: 100%; text-align: center; } </style> </head> <body> <div class="main"> <header class="main_1">我是頭部</header> <section class="main_1"> <div class="content"> <div>11111111111</div> </div> </section class="main_1"> <footer>我是底部</footer> </div> </body>

?

2、如果是使用ionic框架,用其自帶組件 ? ? ?<ion-fab></ion-fab>

轉(zhuǎn)載于:https://www.cnblogs.com/yuyedaocao/p/8969804.html

總結(jié)

以上是生活随笔為你收集整理的解决fixed在苹果手机抖动问题/头部底部固定布局的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。