gpt4 book ai didi

css - 在灵活的容器中居中图像

转载 作者:太空宇宙 更新时间:2023-11-03 18:25:43 25 4
gpt4 key购买 nike

我已经尝试了一段时间,试图让它工作,所以我设置了一个 CodePen,希望你们能提供帮助:

CODEPEN

我需要用百分比而不是静态像素宽度来指定 .containerheightwidth 以适合我的设计并保持它所有流畅且 react 灵敏。

在笔中删除在 .container 上设置的像素尺寸,您会看到发生了什么。

有没有办法做到这一点?

最佳答案

对于现代浏览器,您可以使用绝对定位和transform 来定位图像

.container
width: 50%
height: 50%

background-color: #ebebeb
position: relative

img
position: absolute
left: 50%
top: 50%
transform: translate(-50%, -50%)

演示在 http://codepen.io/gpetrioli/pen/KnHod

关于css - 在灵活的容器中居中图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20843055/

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