【发布时间】:2022-02-01 05:46:16
【问题描述】:
我在我的网站上使用 iframe。现在我想让 iframe 右侧的滚动条不可见。我已经搜索了整个互联网,但我发现的所有代码都不起作用。
这是我的 iframe
<iframe src="../pages.php" width="100%" height="650px" class="gitartik"></iframe>
我尝试的最后一段代码
.gitartik{
overflow-y: scroll;
}
.gitartik::-webkit-scrollbar {
width: 0px;
}
``
【问题讨论】: