使图像完全居中?

发布于 2024-08-08 11:41:37 字数 112 浏览 2 评论 0原文

我有一个 div 和 div 内的图像。图像尺寸会有所不同。

我希望它水平和垂直居中。 CSS 垂直对齐似乎不起作用。

有什么技巧吗?我可以使用 php、css 或 Jquery

I have a div and an image within the div. The image size will vary.

I want it to be centered horizontally and vertically. Css verticle align does't seem to work.

Any tricks? I can use php, css or Jquery

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

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

发布评论

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

评论(3

纵性 2024-08-15 11:41:37

使其水平对齐

margin: 0 auto;

您可以使用CSS 垂直居中并不容易 (至少在 IE6/7 中不是)。使用表格相对容易完成。

你说你有可用的 jQuery。您可以通过应用 JavaScript 来启动任何浏览器。但是当然,如​​果没有启用/支持 JS,您的页面将无法正确显示。

CSS 的 Vertical-align 属性仅适用于具有 display: table-cell 的内容(其本身应该位于具有 display: table 的内容中>)。

如果你有

<div id="container"><img src="my-image.png" alt="" /></div>

你可以使用jQuery像这样居中(如plexus<的建议) /a>)

var imageSrc = $('#container img').attr('src');

$('#container').css({ backgroundImage: 'url(' + imageSrc + ')', backgroundPosition: 'center enter' });

You can get it to align horizontally by using

margin: 0 auto;

Centring vertically isn't easy with CSS (at least not in IE6/7). It's relatively easy to do it with tables.

You say you have jQuery available. You can kick any browser into gear by applying JavaScript. But of course without JS enabled/supported, your page will not appear correctly.

CSS's vertical-align property is only meant to be used within something with display: table-cell (which itself should be in something with display: table).

If you had

<div id="container"><img src="my-image.png" alt="" /></div>

You could use jQuery to center it like this (as in the suggestion by plexus)

var imageSrc = $('#container img').attr('src');

$('#container').css({ backgroundImage: 'url(' + imageSrc + ')', backgroundPosition: 'center enter' });
格子衫的從容 2024-08-15 11:41:37

我不知道你如何使用它,所以我的解决方案可能不适合。

当你在 div 中将图像实现为“背景图像”时,你可以轻松地使用“背景-”将其居中位置':

#div {
background-image: url(./image.png);
background-position: center center;
}

I don't know how you use it, so probably my solution won't fit.

When you implement the image as a 'background-image' within the div you can easily center it with 'background-position':

#div {
background-image: url(./image.png);
background-position: center center;
}
花间憩 2024-08-15 11:41:37
<style>
    .image-container {
        position:relative;
        width:300px;
        height:300px;
        background:#ccc;
    }
    .image-container .image {
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        background:red;
        height:100px;
        width:100px;
    }
</style>
<div class="image-container">
    <img class="image" src="****.jpg"/>
</div>
<style>
    .image-container {
        position:relative;
        width:300px;
        height:300px;
        background:#ccc;
    }
    .image-container .image {
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        background:red;
        height:100px;
        width:100px;
    }
</style>
<div class="image-container">
    <img class="image" src="****.jpg"/>
</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文