Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
考虑到 Android 有多少屏幕尺寸,我想我应该为工具栏和启动图像或响应式背景 css 图像放置图像。
我正在开发一个移动网站。
CSS:
图片
如果你想要一个响应式图像,你可以简单地给元素 awidth的100%. 您可能还需要添加height:auto以保持图像的纵横比。
width
100%
height:auto
这里的例子
img { height:auto; width:100%; }