填充底部指定元素的底部填充。它设置元素的底部填充(空格)。这可以采用%的长度值。
<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>