当前位置:Gxlcms > html代码 > 图片始终固定在浏览器底部的实现方法?_html/css_WEB-ITnose

图片始终固定在浏览器底部的实现方法?_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:120人阅读

css div 图片 浏览器

如图:

底部的图片"蜘蛛侠3",始终紧靠浏览器底部,无论浏览器的大小尺寸是多少.
仅用DIV+CSS能实现吗?
求教高手!


回复讨论(解决方案)

直接使用div让图片据底部显示就行了

position:fixed;
bottom:0px;
试试

margin-bottom:-10px;

Denker

.pic{    position:fixed;    bottom:0px;    left:0px;}

.pic{    position:fixed;    bottom:0px;    left:0px;}

正解

人气教程排行