运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p { border: 1px solid black; background-color: rgb(218, 246, 255); } p.ex1 { padding-block-start: 35px; } </style> </head> <body> <h1>The padding-block-start Property</h1> <p class="ex1">This paragraph has a padding of 35 pixels at the start in the block direction.</p> <p>This paragraph has no specified padding.</p> </body> </html>