所以我正在做一個登陸頁面,但是如果我在手機上測試它,並且我不知道爲什麼,那麼在移動設備上有一個水平滾動條。 我覺得有什麼東西是突破它。爲什麼我的網站在移動視圖中有水平滾動條?
-1
A
回答
1
滾動條在codepen我取出時,我使用此代碼:
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
body {
transition: all 300ms;
background-color: #1D1F16;
font-family: 'Product Sans', Arial, sans-serif;
min-height: 100%;
}
section {
width: 100%;
min-height: 100%;
}
.logo {
background: red;
width: 200px;
height: 100px;
position: relative;
margin: 0 auto;
border-radius: 0;
margin-top: 20px;
}
.box {
width: 100%;
min-height: 100%;
transform: translate(0px, 90px);
/* botder-bottom: 3px solid #D70778;
botder-top: 3px solid #D70778; */
}
@media (max-width: 600px) {
.box {
width: auto;
min-height: 100%;
margin: 0 auto;
border-radius: 0;
padding: 1em;
}
}
@media (max-width: 1200px) {
.box {
transform: translate(0px, 90px);
}
}
.hammerBox {
width: 60px;
margin: 0 auto;
}
.hammer {
width: 60px;
margin: 0 auto;
position: relative;
animation: anim1 2s;
animation-iteration-count: infinite;
size: 30px !important;
text-align: center;
}
@keyframes anim1 {
0% {
bottom: 0px;
}
25% {
bottom: 35px;
}
50% {
bottom: 15px;
}
75% {
bottom: 35px;
}
100% {
bottom: 0px;
}
}
.text1 {
text-align: center;
color: #D70778;
margin-bottom: 0px!important;
text-shadow: -1px 1px 5px #1D1F16;
}
.uc-2 {
text-align: center;
margin-top: 5px;
color: #F5F5F5;
}
a {
text-decoration: none;
color: #fff;
}
p > a:hover {
color: #d9d9d9;
text-decoration: underline;
}
._14 {
font-size: 1.4em;
color: white;
text-align: center;
margin-bottom: 15px;
}
ul {
padding: 0;
list-style: none;
margin-top: 10px;
text-decoration: none;
width: 50%;
margin: 0 auto;
}
.footer-social-icons {
width: 350px;
display: block;
margin: 0 auto;
}
.social-icons li {
height: 100px;
display: inline-block;
float: left;
height: auto;
width: calc(100%/3);
text-align: center;
}
.social-icons li a {
display: block;
height:100%;
width:100%;
display:block;
}
.fa {
padding: 10px 14px;
-o-transition: .5s;
-ms-transition: .5s;
-moz-transition: .5s;
-webkit-transition: .5s;
transition: .5s;
}
.fa-facebook:hover {
color: #3d5b99;
}
.fa-snapchat:hover {
color: #fffc00;
}
.fa-instagram:hover {
color: #e95950;
}
+0
它不工作,如果我打開開發模式,然後打開移動設備我可以stil滾動水平,我絕對不想這樣。 –
+0
它仍然讓我滾動水平 –
+0
@amirhanif這是因爲你的codepen容器的高度大於應用程序,我想如果你測試它在一個實際的設備上,它會工作,或在你開發的谷歌開發者控制檯特定設備 – Xander
相關問題
- 1. 爲什麼我的網站上有一個水平滾動條?
- 2. 爲什麼我有水平滾動條?
- 3. 爲什麼我的網站上顯示水平滾動條?
- 4. 我在我的網站頁面中有水平滾動條
- 5. 爲什麼我的網站顯示水平滾動
- 6. 水平滾動條從網站丟失
- 7. 網格視圖中的水平滾動
- 8. 爲什麼我的DataGridView上沒有水平滾動條?
- 9. 水平滾動網站
- 10. 水平滾動網站
- 11. 爲什麼這個網站在webkit上水平滾動?
- 12. 水平滾動時保持垂直滾動條在視圖中
- 13. 無法擺脫水平滾動條在我的網站
- 14. 在我的網站上遇到水平滾動條問題
- 15. 爲什麼水平滾動條在我的網格控件中不起作用?
- 16. 水平滾動頁面中的水平滾動視圖
- 17. 爲什麼滾動條出現在我的網站上的移動設備上?
- 18. 在水平滾動視圖中替代水平滾動視圖在android
- 19. DIV水平滾動條成爲主要水平滾動條
- 20. 水平滾動+滾動條
- 21. 如何刪除我的WordPress網站上的水平滾動條?
- 22. 爲什麼我的標題強制水平滾動條?
- 23. 網格水平滾動條(浮動)
- 24. 水平滾動視圖
- 25. android水平滾動視圖
- 26. 水平滾動視圖iOS
- 27. 顯示水平效果的垂直滾動視圖。爲什麼?
- 28. 爲什麼我會得到一個水平滾動條
- 29. 爲什麼我的水平滾動網站會丟失導航欄?
- 30. html中圖像的水平滾動條
你的標題有水平滾動條和你的問題裏面你有垂直滾動條......你能澄清? – repzero
它是horzontal對不起,更新代碼 –