padding-bottom 指定元素的底部填滿。它設定元素的底部填充(空間)。這可以採用長度為 % 的值。
<html> <head> </head> <body> <p style = "padding-bottom: 20px; border:1px solid red;"> This is demo content. </p> <p style = "padding-bottom: 20%; border:1px solid red;"> This is another demo content. </p> </body> </html>
以上是使用 CSS 指定元素的底部填充的詳細內容。更多資訊請關注PHP中文網其他相關文章!