CSS中有許多方法可以使圖像居中,以下是一些樣式代碼示例:
/* 水平居中: */ img { display: block; margin: 0 auto; } /* 垂直居中: */ img { display: block; margin: auto; position: absolute; top: 0; bottom: 0; left: 0; right: 0; } /* 水平和垂直居中: */ img { display: block; margin: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } /* 僅用flex box水平和垂直居中: */ div { display: flex; justify-content: center; align-items: center; }
以上是一些常用的CSS樣式方法,可以使圖像水平、垂直或者水平垂直居中??梢愿鶕嶋H使用場景選擇最適合的方法。
上一篇css 主題變紅
下一篇css3展開動畫代碼