-1
您可以看看THIS LINK並讓我知道爲什麼.input-prepend
和.input-append
表現得像這樣是所有視口寬度小於1027? BootStrap input-append&input-prepend上的問題
您可以看看THIS LINK並讓我知道爲什麼.input-prepend
和.input-append
表現得像這樣是所有視口寬度小於1027? BootStrap input-append&input-prepend上的問題
在樣式表中有下列視規則:
/*This Part is for iPhone 4 Portraite*/
@media (max-width: 480px) {
.tabres{padding:0; margin: 0; width:100%;}
.cent{text-align: center;}
.respo{padding:7px;}
.table-striped{font-size:95%; margin-bottom:5px;}
.span3{
width: 100%;
margin: 5px 0px 10px 0px;
}
您將所有span3
元素的上邊距(其中輸入字段是其中之一)5PX當視小於480像素。
在我的瀏覽器中,這是唯一受影響的視口。
感謝Jivings我在Firefox和Chrome中測試了這兩個瀏覽器上的相同問題! –