gpt4 book ai didi

html - 物化CSS : two lines in a button

转载 作者:行者123 更新时间:2023-12-04 00:12:17 25 4
gpt4 key购买 nike

我正在使用 MaterializeCSS,我希望能够使按钮中的长文本显示在 2 行上而不是被截断。

这是一个清晰的例子: Demo

<a class="waves-effect waves-light btn"><i class="material-icons right">cloud</i>juste change the panel size to see what i'm talking about</a>

我已经尝试更改 btn 类的“行高”属性。这工作得很好,但如果屏幕足够大,内容可以显示在一行上,文本和图标将粘在按钮的顶部,但我希望它们垂直居中。

有解决办法吗?谢谢!

最佳答案

您可以应用此样式来覆盖现有样式:

.btn.waves-effect {
height: auto;
min-height: 20px;
line-height: 20px;
padding-top: 8px;
padding-bottom: 8px;
}

您的示例已更新: http://jsfiddle.net/kgy6j0k5/3/

编辑:图标垂直居中

.btn.waves-effect {
height: auto;
min-height: 20px;
line-height: 20px;
padding-top: 8px;
padding-bottom: 8px;
padding-right: 50px;
}

.btn.waves-effect .material-icons {
position: absolute;
right: 10px;
top: 50%;
margin-top: -10px;
margin-left: 0;
}

关于html - 物化CSS : two lines in a button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32741516/

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