gpt4 book ai didi

html - 如何根据屏幕自动调整高度和宽度?

转载 作者:行者123 更新时间:2023-11-28 03:20:50 26 4
gpt4 key购买 nike

这是我用来在移动应用程序项目中添加滚动文本的代码。

<style type="text/css">
.scroll {
padding: 10px;
height: 280px;
width: 580px;
overflow: scroll;
}
</style>

<div class="scroll">
<p>put paragraph here</p>
</div> `enter code here`

最佳答案

你可以像下面这样使用:

<style type="text/css">
.scroll {
padding: 10px;

width: 100%;
overflow:auto;
-webkit-overflow-scrolling: touch;
}
</style>

查看 JSFiddle

关于html - 如何根据屏幕自动调整高度和宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24551628/

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