<div class='sss'>2222</div>
.sss {
margin-bottom: 0; /* 确保 div 紧贴底部 */
text-align: center; /* 水平居中内容 */
background-color: #f0f0f0; /* 可选:添加背景颜色以便更容易看到效果 */
padding: 10px; /* 可选:添加内边距 */
position: sticky; /* 如果需要它在滚动时仍然保持固定,可以使用 sticky */
bottom: 0; /* 与 sticky 一起使用时,确保它固定在底部 */
}
其中:
position: sticky;
bottom: 0;
重要
