gpt4 book ai didi

css - 如何制作流体按钮

转载 作者:太空宇宙 更新时间:2023-11-04 08:31:43 28 4
gpt4 key购买 nike

我在表单中使用了一个提交按钮。长文本通常没问题,但在小屏幕上查看时会出现问题。

目前,无论页面宽度如何,按钮都保持相同的宽度,如果页面太窄,则会导致页面水平滚动。

我希望文本像在行内 block 元素中一样换行。我已经在 css 中指定了它,但它似乎不起作用。

input{background:#deaded;padding:10px 30px;display:inline-block;border-radius:5px}

<input type="submit" value="This is where the slogan goes" />

最佳答案

您可以使用white-space: normal;

input {
background: #deaded;
padding: 10px 30px;
display: inline-block;
border-radius: 5px;
white-space: normal;
}
<input type="submit" value="This is where the slogan goes" />

关于css - 如何制作流体按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44737794/

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