CSS - 文本和图像链接到文本垂直居中对齐

发布于 2024-11-04 18:58:48 字数 98 浏览 0 评论 0原文

请修改此示例,以便向我展示如何使图像旁边的文本在图像中间垂直对齐图像。

Please modify this example so as to show me how I can have the text beside the image vertivally aligned beside the middle of the image.

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

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

发布评论

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

评论(1

新一帅帅 2024-11-11 18:58:48

演示: http://jsfiddle.net/Blender/sVx5e/1/

HTML

<div onclick="window.location = '#'">
    <img src="http://doc.jsfiddle.net/_images/jsfiddle-logo-thumb1.png">
    jsFiddle
</div>

CSS

div {
  height: 150px;     /* This is the height of the image */
  line-height: 150px;
}

img {
  float: left;
}

在包装元素块时,使用

Demo: http://jsfiddle.net/Blender/sVx5e/1/

HTML:

<div onclick="window.location = '#'">
    <img src="http://doc.jsfiddle.net/_images/jsfiddle-logo-thumb1.png">
    jsFiddle
</div>

CSS:

div {
  height: 150px;     /* This is the height of the image */
  line-height: 150px;
}

img {
  float: left;
}

Use a <div>, not a <a> element, when wrapping blocks of elements. IE chokes up when you do...

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