我在大型視網膜顯示器上顯示我的網站時出現問題。在桌面設備和移動設備上運行良好,但在MacBook視網膜屏幕上,它看起來很大,並且不適合瀏覽器。有沒有辦法讓.container看起來相同的寬度和高度,並在所有設備和所有屏幕()上左上浮動?視網膜上的HTML和CSS顯示錯誤2800x2000
<body> <div class="container"> <nav> </nav> </div> </body>
這裏是網站:www.pctutorials.16mb.com
下面是代碼:
所有的* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
line-height: 0;
}
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
position: relative;
float: left;
-webkit-text-size-adjust:100%;
-ms-text-size-adjust:none;
}
p {
font-family: Arial, sans-serif;
font-size: 13px;
line-height: normal;
color: white;
}
.container {
width: 2000px;
height: 1080px;
position: relative;
float: left;
overflow: hidden;
background: url("images/background.jpg") no-repeat top left;
background-size: 2000px 1080px;
}
歡迎來到Stack Overflow。你能爲我們提供HTML代碼的基本結構嗎? – Dinei
您可以編輯的問題,在這個問題本身添加相關的html代碼? – Ravimallya