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.
我正在使用phonegap. 我有 3 个 div 元素,一个用于标题栏,另一个用于标签栏,另一个用于内容。谁能告诉我如何以百分比设置 div 高度并将背景图像设置为相同的 div 元素。
phonegap
提前致谢
试试这个 CSS 代码:
#id_div { background:url('image.jpg'); background-size:contain; /* or this: background-size: 100% 100%; */ }