运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p.ex1 { border: 1px solid red; padding: 35px; } p.ex2 { border: 1px solid red; margin: 35px; } </style> </head> <body> <h1>The padding Property</h1> <p class="ex1">This paragraph has a padding of 35 pixels on all four sides.</p> <p class="ex2">This paragraph has no specified padding, but a margin of 35 pixels on all four sides.</p> <p><strong>Note:</strong> Padding creates extra space within an element, while margin creates extra space around an element!</p> </body> </html>