sencha touch 让图片(img)适应界面

在显示一条新闻时,如果其中包含了图片,图片过大的话会吧视图给撑大,在app中体验很不好。

所以需要控制图片的大小,且需要考虑到该图片已经被指定高宽下的情况。可以使用css来控制

1 img {
2     width:100% !important;
3     height:auto !important;
4 }
原文地址:https://www.cnblogs.com/mlzs/p/3125620.html