我环顾四周,找不到解决方案。我想设置图像的百分比高度并保持宽度的纵横比。
不适用于 IE 中的高度:
img{
height: 70%;
width: auto;
position: absolute;
top: 0;
left: 0;
}
是否适用于 IE 中的宽度:
img{
height: auto;
width: 70%;
position: absolute;
top: 0;
left: 0;
}
非常感谢任何帮助。