那些明白他們聖經的人,不應對世界的現狀感到意外。
Those who know their Bible should not be surprised at the state of the world as it is.
D.M. Lloyd-Jones

2016/09/19 , 週一 - 17:35 By 資深工讀生

CSS margin

margin: 0;      /* 一個值:代表上、下、左、右   */

margin: 5 10;    /*  上下、左右   */

margin: 5 10 15;    /*  上、左右、下   */

margin: 1 10 5 15;   /*  上、右、下、左  */

Margin auto

margin 裡的 auto 通常是拿來「置中對齊」使用。
也就是將左右邊界值設定為「auto」,產生置中對齊的效果。

方法一
margin-left : auto;
margin-right: auto;

方法二
margin : auto;

方法三
margin : 上下 auto;
EX: margin : 0 auto;

方法四
margin : 上 auto 下;
EX: margin : 0 auto 0;

文章分類