How to position a div scrollbar on the left hand side?

前端 未结 7 1071
别跟我提以往
别跟我提以往 2020-12-01 00:38

Is it possible to specify a position (left or right hand side) for the placement of a vertical scrollbar on a div?

For example look at this page which explains how

相关标签:
7条回答
  • 2020-12-01 01:25

    No, you can't change scrollbars placement without any additional issues.

    You can change text-direction to right-to-left ( rtl ), but it also change text position inside block.

    This code can helps you, but I not sure it works in all browsers and OS.

    <element style="direction: rtl; text-align: left;" />
    
    0 讨论(0)
提交回复
热议问题