例如,将浮动图像放在右下角

Apa*_*che 3 html css

基本上我想在右下角放一个透明的图像.我阅读了有关右上角,右上角等问题.但是,我只能申请margin-top: 100%;将它放在我想要的地方但是它显示滚动条然后图片将真的在底部,我甚至看不到它.

欢迎任何想法.

Mva*_*est 5

尝试

right: 0px;
bottom: 0px;
Run Code Online (Sandbox Code Playgroud)

当然你需要固定定位:

position: fixed;
Run Code Online (Sandbox Code Playgroud)

这将使其在用户滚动的任何位置都粘在右下角.