如何使用CSS或Javascript强制浏览器在浏览器的左侧显示滚动条?

时间:2018-12-31 17:18:40

标签: html css

我正在开发一种多语言的网站,因此我需要在窗口左侧显示浏览器的滚动条。有什么方法可以使用CSS或Javascript更改滚动条的位置?

1 个答案:

答案 0 :(得分:1)

您可以用力一点,很多人可能会认为这是“非标准”的,但这并不是真正的问题。让我们努力吧。通常,您会为此设置overflow: auto;,但我强迫滚动只在此处显示。公平地说,我只在我使用的单一Chrome版本上对此进行了测试。

body {
  direction: rtl;
  overflow: scroll;
  height: 50px;
  width: 100px;
}

.bodycontainer {
  direction: rtl;
}
<body>
  <div class="bodycontainer">
    Here I am, I need more text just to force me to scroll the scroll on the scroll of the body with my super bad width and height things I set on the body
  </div>
</body>