亚洲欧美黑人深猛交群,国产一级a毛一级a看免费视频,日韩电影在线观看免费观看完整版,91久久国产成人免费观看资源

CSS修復(fù)iOS VH單位的bug

網(wǎng)站建設(shè) 2015 10月22日 發(fā)布

有在iOS 7視口高度的單位的bug修復(fù)(iPhone和ipad許多JavaScript),本文將討論如何解決這個(gè)錯(cuò)誤的CSS。這個(gè)bug影響視口高度的單位,繪制為例:如果你嘗試用高度充分視口高度:100vh容器,它會(huì)顯示一個(gè)很高的空隙。雖然這個(gè)bug被固定在iOS 8,但許多舊iPhone和ipad用戶仍在使用舊的iOS 7。VH單元buggyfill是一種流行的JavaScript的解決方法,但是如果你不想依賴(lài)于JavaScript,這里是一個(gè)使用CSS媒體查詢(xún)的快速修復(fù)。

CSS定位

修復(fù)很簡(jiǎn)單。在你需要100vh元素,只是元素高度匹配使用媒體查詢(xún)目標(biāo)的iPhone和ipad的分辨率版本的裝置高度。我從themify主題和流程了解這個(gè)編碼的CSS技巧;和設(shè)備的斷點(diǎn)從本網(wǎng)站引用。


/* fix iOS bug not displaying 100vh correctly */
/* ipad */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
.fullheight {
height: 768px;
}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
.fullheight {
height: 1024px;
}
}
/* iphone5 */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : landscape) and (-webkit-device-
pixel-ratio: 2) {
.fullheight {
height: 320px;
}
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-
pixel-ratio: 2) {
.fullheight {
height: 568px;
}
}
/* iPhone 4 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) and (-webkit-min-
device-pixel-ratio : 2) {
.fullheight {
height: 320px;
}
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) and (-webkit-min-
device-pixel-ratio : 2) {
.fullheight {
height: 480px;
}
}



如沒(méi)特殊注明,文章均為善微網(wǎng)絡(luò)原創(chuàng),轉(zhuǎn)載請(qǐng)注明來(lái)自http://www.kunming3.com/news/85.html
相關(guān)標(biāo)簽
相關(guān)新聞

湖南省文化和旅游廳2024年湖南文化旅游主流媒體及商業(yè)門(mén)戶網(wǎng)站推廣傳播項(xiàng)目公開(kāi)招標(biāo)公告

湖南省文化和旅游廳 的2024年湖南文化旅游主流媒體及商業(yè)門(mén)戶網(wǎng)站推廣傳播 進(jìn)行...

日期:2024-10-17 瀏覽次數(shù):1350

搬家下單小程序開(kāi)發(fā)方案

搬家下單小程序旨在為用戶提供一站式搬家服務(wù)解決方案。它將搬家過(guò)程中的各項(xiàng)服務(wù)整合...

日期:2023-11-27 瀏覽次數(shù):90150

產(chǎn)品設(shè)計(jì)師從哪里獲得靈感?

學(xué)習(xí)設(shè)計(jì)酷炫的東西來(lái)給人們留下深刻印象的工具很容易。 ...

日期:2023-10-14 瀏覽次數(shù):95120

長(zhǎng)沙宇立電氣有限公司官網(wǎng)上線

長(zhǎng)沙宇立電氣有限公司是專(zhuān)業(yè)開(kāi)發(fā)工業(yè)自動(dòng)化控制系統(tǒng)、過(guò)程控制儀表以及機(jī)電一體化產(chǎn)品...

日期:2023-10-14 瀏覽次數(shù):95020

DragGAN:人工智能驅(qū)動(dòng)的圖像編輯工具,讓編輯圖像變得簡(jiǎn)單

DragGAN 是馬克斯普朗克研究所開(kāi)發(fā)的一種新的 AI 工具,允許用戶通過(guò)幾次...

日期:2023-05-24 瀏覽次數(shù):203296