我有以下的html,js fiddle 更新:注意,我也在页面中使用Jquery Mobile,
<div class="control my-control">
<div>
<div>
<div>Title:</div>
<div></div>
<div></div>
</div>
<div>
<div>Lyrics: </div>
<div>
<div class="lyric-content"></div>
</div>
<div></div>
</div>
</div>
<div>
<img src="http://cdn1.iconfinder.com/data/icons/snowish/72x72/actions/gtk-media-play-ltr.png"></div>
</div>
这很好,效果很好。但这不是响应意味着它在移动和桌面方面看起来同样好。我试图使宽度100%。看起来好不好。
答案 0 :(得分:1)
一个简单的解决方案确实是将包装div的宽度设置为+/- 100%。而不是添加额外的javascript,也许媒体查询是要走的路?
在.css:
@media only screen and (max-width: 480px) {
//这里的小屏幕设备样式
}
在.html:
<link rel="stylesheet" type="text/css" media="only screen and (max-device-width: 480px)" href="a-stylesheet-for-smaller-screens.css" />