【代碼筆記】Web-CSS-CSS Margin(外邊距)

一,效果圖。html

 

二,代碼。post

 

複製代碼
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Margin</title> <style> p{ background-color: yellow; } p.margin{ margin: 100px 50px; } </style> </head> <body> <p>This is a paragraph with no specified margin</p> <p class="margin">this is a paragrapth with specified margins.</p> </body> </html>
複製代碼

 

 

參考資料:《菜鳥教程》this

相關文章
相關標籤/搜索