想让图像文件出现在页面的固定位置。
编写了以下代码:
<style>
.hovering-image{
position: fixed;
left: 70%;
top:20%;
height: 20%;
width 10%;
}
</style>
<body>
<div class="hovering-image">
<img src="whatever.jpg">
</div>
</body>
但是,图像会随着窗口大小的调整而变长并改变比例。有没有更好的方法让图像显示在固定位置并随着窗口调整大小而不扭曲?