CSS 距底 5 像素是前端開發中非常常見的操作。如果想要實現這個效果,可以使用 margin-bottom 屬性,如下所示:
.element { margin-bottom: 5px; }
以上代碼會讓元素底部與其下一個兄弟元素的頂部相距 5 像素。
如果是要讓整個頁面底部與瀏覽器窗口底部相距 5 像素,可以使用定位和 bottom 屬性,如下所示:
body { position: relative; min-height: 100vh; } .footer { position: absolute; bottom: 5px; width: 100%; }
以上代碼會讓 .footer 元素位于頁面底部并與瀏覽器窗口底部相距 5 像素。
上一篇php curl超時
下一篇php curl請求接口