gpt4 book ai didi

html - 不同 block 中的标题文本没有响应

转载 作者:太空宇宙 更新时间:2023-11-03 22:26:34 24 4
gpt4 key购买 nike

在较小的屏幕设备上,以下内容出现在三个 block 中,而不是在同一个句子行中(见图)。所以我想要在较小的设备上:“我们在这里开始 if-statement-text-1,这就是结束”。如何修复?

enter image description here

我需要它在较小的屏幕上看起来像这样... enter image description here

.text {
background-color: red;
padding:20px;
}
<div class="header">Here we start
<span class="text">if-statement-text-1</span>
<span class="text">if-statement-text-2</span>and this is the end!</div>

最佳答案

我不完全确定我完全理解你的目标,但是添加 display: inline-block; 到你的 .text 类应该让它看起来更接近您的目标。

.text {
background-color: red;
padding:20px;
display: inline-block;
}
<div class="header">Here we start
<span class="text">if-statement-text-1</span>
<span class="text">if-statement-text-2</span>and this is the end!</div>

关于html - 不同 block 中的标题文本没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50797448/

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