主頁
CSS
CSS 外邊距
Tryit: 邊距簡寫屬性 - 3 個值
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> div { border: 1px solid black; margin: 25px 50px 75px; background-color: lightblue; } </style> </head> <body> <h2>The margin shorthand property - 3 values</h2> <div>This div element has a top margin of 25px, a right and left margin of 50px, and a bottom margin of 75px.</div> <hr> </body> </html>