0
我在aspx頁面中有HTML/CSS內容。僅在移動視圖中隱藏特定的div
我想要一個特定的div部分(包括一些CSS類)來切換到移動視圖時隱藏。
我已經嘗試使用以下:
設置引導屬性:
@media screen and (max-width: 600px){}
和設置CSS /類屬性:
{visibility: hidden;}
但是當測試的代碼,它躲到該div永久。
代碼引導:
@media screen and (min-width: 768px)
.col-md-7 {
width: 58.33333333%;
}
.service {
background: #005366;
color: #999;
margin-bottom: 10px;
}
.service h4 a{
color: #fff;
}
.service img {
float: right;
margin-left: 10px;
-webkit-transition: all 0.3s ease 0.1s;
-moz-transition: all 0.3s ease 0.1s;
-ms-transition: all 0.3s ease 0.1s;
-o-transition: all 0.3s ease 0.1s;
transition: all 0.3s ease 0.1s;
}
.service img:hover {
opacity: .9;
}
.service-in {
padding: 15px 0 0 10px;
min-height: 150px;
}
預先感謝您。
您試圖隱藏哪個類/元素?你有沒有嘗試顯示:沒有,而不是可見性:隱藏? – L4zl0w