執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { border: 1px solid red; box-sizing: border-box; width: 300px; } div.ex1 { margin-bottom: 20px; padding-inline-end: 50px; } </style> </head> <body> <h1>The padding-inline-end Property</h1> <div class="ex1">This div element has a padding of 50 pixels at the end in the inline direction.</div> <div>This div element has no specified padding.</div> </body> </html>