Agile育成ブログ
未来を変える喜びを
HTML

margin


Warning: count(): Parameter must be an array or an object that implements Countable in /home/xs638785/agile-software.site/public_html/wp-content/plugins/rich-table-of-content/functions.php on line 490

margin

余白をどのくらい入れるのかを決めます。
paddingは要素の内側にmarginは要素の外側に余白を作ることができます。

margin: 10px;                                         上下左右のmarginが10px
margin: 10px 20px;                                 上下のmarginが10px、左右のmarginが20px
margin: 10px 20px 30px;                         上が10px,左右が20px、下が30px
margin: 10px 20px 30px 40px;                 上が10px、右が20px、下が30px、左が40px

You cannot copy content of this page