为什么 chrome 不对齐这个文本?

发布于 2024-11-27 10:18:09 字数 409 浏览 0 评论 0原文

我有以下代码

 <img src="/Content/Images/Icons/phone2.png"> <b>Phone Numbers:</b> (No orders via Phone at this time)<br />

,它在 Firefox 中看起来很好:

在此处输入图像描述

但是当我在 chrome 中打开它时,它显示像这样:

在此处输入图像描述

有谁知道为什么 chrome 会引发此文本的第二部分?

i have the following code

 <img src="/Content/Images/Icons/phone2.png"> <b>Phone Numbers:</b> (No orders via Phone at this time)<br />

and it looks fine in firefox:

enter image description here

but when i open it in chrome, it shows up like this:

enter image description here

does anyone know why chrome would raise the second part of this text ?

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

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

发布评论

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

评论(2

心凉怎暖 2024-12-04 10:18:09

在图像标签中使用 valign 属性,或者
应用于图像的 CSS 垂直对齐属性。

Use valign attribute in your image tag, or
CSS vertical-align property applied to the image.

怪异←思 2024-12-04 10:18:09

它看起来像是不同浏览器默认样式应用于源中各种元素的结果。尝试为 设置 vertical-align 属性并再次测试,例如:

b,img{
    vertical-align:baseline;
}

It looks like the result of different browser default styles applying to the various elements in your source. Try to set a vertical-align property for the <b> and <img> and test it again, for example:

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