需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<body>标签中,输入html代码:
<div>123456</div><div style="position: absolutetop: 0z-index: -1">abc</div>
3、浏览器运行index.html页面,此时“abc”的div模块被成功设置到了最底层。
你好!给body加个父级属性,给bottom加个子级属性。然后设置bottom定位位置底部。
例如body{position:relative}
.bottom:{position:absolutebottom:0}
希望对你有所帮助,望采纳。