柚子快報(bào)邀請(qǐng)碼778899分享:前端 CSS設(shè)置滾動(dòng)條位置調(diào)整
柚子快報(bào)邀請(qǐng)碼778899分享:前端 CSS設(shè)置滾動(dòng)條位置調(diào)整
1、滾動(dòng)條位置在左側(cè)
// 實(shí)現(xiàn)原理
// 設(shè)置父元素的文字方向?yàn)閺挠业阶?direction: rtl;
// 讓所有子元素的文字方向從左到右 direction: ltr;
// css
#son {
direction: ltr;
}
#father {
width: 400px;
height: 200px;
border: 1px solid aqua;
overflow-y: scroll;
direction: rtl;
}
.item {
height: 80px;
border: 1px solid #eee;
}
// html
結(jié)果如下:
?
2、滾動(dòng)條位置在上方
// 實(shí)現(xiàn)原理
// 將父元素上下翻轉(zhuǎn) transform: scaleY(-1);
// 再將子元素上下翻轉(zhuǎn)回來 transform: scaleY(-1);
// html
It's not easy to live, because experience makes us know a lot. People walk in cold tea, things are right and people are wrong, and everything will become a memory in the blink of an eye.
// css
#son {
width: 500px;
transform: scaleY(-1);
}
#father {
transform: scaleY(-1);
width: 300px;
overflow-x: scroll;
}
結(jié)果如下:
?
柚子快報(bào)邀請(qǐng)碼778899分享:前端 CSS設(shè)置滾動(dòng)條位置調(diào)整
參考鏈接
本文內(nèi)容根據(jù)網(wǎng)絡(luò)資料整理,出于傳遞更多信息之目的,不代表金鑰匙跨境贊同其觀點(diǎn)和立場。
轉(zhuǎn)載請(qǐng)注明,如有侵權(quán),聯(lián)系刪除。