// css
.body{
@media screen and(max-width:450px){
position: fixed;
width: 100%;
}
}
複製代碼
body 元素使用fixed 佈局,width:100%css
.body{
@media screen and(max-width:450px) {
position: fixed;
top: 0;
bottom: 0;
width: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
}
複製代碼
// css
.hide-cursor{
caret-color: transparent; // ios safari 11.1 +支持
}
複製代碼
因爲 caret-color 只支持 iOS 11.1 +,咱們使用 text-indent來移動行內縮進量,給個足夠大的值,形成隱藏光標的做用ios
.fix-ios-safari-11.1{
text-indent: -9999px; // 隱藏光標
margin-left: -50%;
}
複製代碼