我想制作一个div
并且其内部内容具有响应性,因此当我调整窗口大小div
时,如果没有 bootstrap ,也会在窗口大小上调整大小相同。
在 bootstrap :
中
<div id="mapImage1" class="col-sm-12" style="position: relative;">
<img src .... />
</div>
答案 0 :(得分:0)
试试这个css:
/* Show in default resolution screen*/
#container2 {
width: 960px;
position: relative;
margin:0 auto;
line-height: 1.4em;
}
/* If in mobile screen with maximum width 479px. The iPhone screen resolution is 320x480 px (except iPhone4, 640x960) */
@media only screen and (max-width: 479px){
#container2 { width: 90%; }
}