gpt4 book ai didi

javascript - 如何保持div的宽度相同?

转载 作者:太空宇宙 更新时间:2023-11-04 00:40:48 24 4
gpt4 key购买 nike

我正在制作一个网站,该网站会在特定的秒数内轮换不同的报价,并且在开始时会有延迟。当我加载我的页面时,第一个引用出现,它会自动在我的页面上添加一个滚动条,页面看起来更大。我尝试使用 css 并隐藏滚动条,但它不起作用。我不希望它是固定大小,因为我希望它是百分比宽度。

var quotes = [] //different qutoes are in here

var nextNum = Math.floor(Math.random() * (quotes.length));
var randNum;

var equation;
function genQuote() {
randNum = nextNum;
nextNum = Math.floor(Math.random() * (quotes.length));
while(randNum == nextNum) {
nextNum = Math.floor(Math.random() * (quotes.length));
}
equation = ((quotes[randNum].length / 4.25) * 60)*3;
document.getElementById('quote').innerHTML = quotes[randNum];

setTimeout(genQuote, equation);
}

setTimeout(genQuote, 6000);
<p id = "quote"></p>
<!-- tried different styling methods like overflow-x: none, hidden -->

所以我基本上希望没有滚动条,并且引用是响应式的,所以没有设置宽度。

最佳答案

如果你只是想隐藏水平滚动条,那么你可以在你的css中添加以下内容:

body {
overflow-x: hidden;
}

我想您尝试将 overflow-x 属性添加到您的 paragraph 元素而不是 body 而这就是它没有成功的原因'不工作。

关于javascript - 如何保持div的宽度相同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58358420/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com