使用
时按钮高度问题换行符

发布于 2024-09-15 19:24:09 字数 517 浏览 7 评论 0原文

我正在使用 char 在按钮标签中进行换行。 这是代码:

<html>

<input style='width: 50px;height:60px;' type='button' value="abc" />
<input style='width: 50px;height:60px;' type='button' value="abc&#10;asd" />
</div>

问题是一个按钮有 他的标签中的字符与第二个按钮的行高度不同。 仅当我设置按钮上的宽度和高度时才会发生这种情况。 它看起来是这样的: http://jenya.moroshko.com/buttontest.html

有什么建议吗?

i'm using the char to make a line break in a button label.
here is the code:

<html>

<input style='width: 50px;height:60px;' type='button' value="abc" />
<input style='width: 50px;height:60px;' type='button' value="abc
asd" />
</div>

the problem is that a button that's has the char in his label is not in the same height on the line as the second button.
it only happens when i set the width and the height on the buttons.
here is how it looks:
http://jenya.moroshko.com/buttontest.html

any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺深海 2024-09-22 19:24:09

我不知道你能做到!它们是未对齐的,因为默认情况下按钮与它们内部文本的基线对齐 - 在您的情况下,浏览器会选择文本的底线。如果仔细观察,您会发现基线对齐。您可以使用vertical-align: middle/top/bottom来解决这个问题。

I didn't know you could do it! They are misaligned, because by default buttons are aligned to the basline of text inside them -- and in your case the browser chooses the bottom line of text for that. If you look closely, you will notice that the baselines align. You can work around that by using vertical-align: middle/top/bottom.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文