gpt4 book ai didi

html - 如何阻止文本使我的圆形按钮变成椭圆形?

转载 作者:行者123 更新时间:2023-11-28 14:52:41 26 4
gpt4 key购买 nike

我正在使用 Pug 和 CSS 制作一个圆形按钮,它看起来像这样,里面没有任何文本:

no text round button

这是我使用的代码

button(class="round-button")

.round-button {border: none; padding: 40px; border-radius: 1000px; }

这看起来不错没有文本。如果我添加文本,它看起来像这样:

enter image description here

当按钮中有文本时,如何使按钮保持圆形?

最佳答案

使用边界半径:50%。

高度和宽度也需要相同。

.round-button {
border: none;
height: 40px;
width: 40px;
border-radius: 50%;
background-color: pink;
text-align: center;
}
<button class="round-button">text</button>

关于html - 如何阻止文本使我的圆形按钮变成椭圆形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51433167/

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