5.5 邊距屬性

屬性屬性值描述
17px、17em、17%設定邊距寬度
/**
 * 讓元素水平置中的方法:
 * 上下邊距為 0,左右邊距自動調整
 */

div {
    margin: 0 auto;
}