css 常見問題

沒事偷著樂琅發表於2017-09-15

相對佈局: 相對是是自己
例如:
position: relative;
left:2%; // 相對自己離左邊 2%
bottom: 45%; 相對自己離下面 45%

絕對佈局:相對的是父元素(父元素必須設定佈局)、
position: absolute;
left:2%; // 相對自己離左邊 2%
bottom: 45%; 相對自己離下面 45%

居中顯示:
display: flex;
align-items: center;
justify-content: center;