我的影片格式爲菜單表,並在窗口(使用媒體查詢)變得太小,應該使自己適應。而不是在一條線上,菜單項應該將自己定位對方的下面,所以這樣的:Safari瀏覽器(移動和桌面)表浮動錯誤
它在Chrome桌面工作正常,但是當我嘗試在Safari中出現這種情況:
這真的很奇怪。我清除了緩存,所以這不是問題。移動Safari和移動Chrome瀏覽器也會出現同樣的問題。我在這裏真的很沮喪,我希望有人知道一個解決方案。 這裏有一個展示的jsfiddle菜單:https://jsfiddle.net/0wwnqkd9/ 編輯:想補充,它的工作中的jsfiddle,在Safari。
您還可以訪問this website用於演示
而(隔離)代碼:
HTML
<div id="MENU_WR">
<table id="MENU">
<td><a href="#ABOUT">about</a></td>
<td><a href="#products">products</a></td>
<td><a href="#portfolio">portfolio</a></td>
<td><a href="#portfolio">portfolio</a><
</table>
</div>
CSS
body {
background-color: #171319;
}
#MENU_WR {
position: absolute;
top: 100px;
bottom: 0;
left: 0;
right: 0;
max-width: 600px;
width: 60%;
height: 55px;
border: 2px solid rgba(128, 176, 105, 0.3);
border-radius: 10px;
animation: menuDown 1.5s ease-in;
}
#MENU {
font-family: Comfortaa, Arial;
border-collapse: collapse;
font-weight: normal;
width: 100%;
height: 100%;
font-size: 20px;
color: #7fb069;
text-align: center;
}
#MENU td {
width: 25%;
height: 100%;
}
#MENU td>a {
padding-top: 15px;
display: block;
text-decoration: none;
color: inherit;
width: 100%;
height: 100%;
}
#MENU td:hover {
background: rgba(128, 176, 105, 0.3);
}
#MENU td:first-child {
border-bottom-left-radius: 8px;
border-top-left-radius: 8px;
}
#MENU td:last-child {
border-bottom-right-radius: 8px;
border-top-right-radius: 8px;
}
@media screen and (max-width: 980px) {
#MENU_WR {
display: inline-block;
width: 100%;
max-width: none;
border: none;
height: 220px;
border-radius: 0;
}
#MENU td {
display: inline-block;
width: 100%;
height: 25%;
float: left;
border-radius: 0;
}
#MENU {
float: left;
}
#MENU td:first-child {
border-bottom-left-radius: 0px;
border-top-left-radius: 0px;
}
#MENU td:last-child {
border-bottom-right-radius: 0px;
border-top-right-radius: 0px;
}
}
不知道你注意到沒有,但問題並不在Safari中,你所提供的的jsfiddle發生。不過,我可以在您的網站上覆制它。檢查出來... –
@JonUleis是的,想補充一點。它在JSFiddle IN Safari中工作。我完全不知道這裏發生了什麼。 – YSbakker