gpt4 book ai didi

html - 在百分比宽度 div 内居中固定宽度的 div

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

如何在百分比宽度的 div 中水平居中固定宽度的 div?

例如,在这个 fiddle 中,我希望 Google Logo 居中。

<div class="box">
<div class="image">
<img src="http://www.google.co.uk/intl/en_ALL/images/srpr/logo11w.png" />
</div>
<div class="text">Hello</div>
</div>

.box {
border-radius: 4px;
width: 30%;
margin-right: 2%;
margin-top: 10px;
background: #fff;
float: left;
position: relative;
overflow: hidden;
border: 1px solid #bdc9dc;
height: 200px;
}

.box .image {
height: 160px;
width: 400px;
background-color: #ff1769;
}

http://jsfiddle.net/FloatLeft/g2u4E/

我在网上查看了各种“解决方案”,但没有找到任何有效的方法。

最佳答案

您可以通过为 div 设置背景图像并根据需要更改背景大小来轻松地将 Logo 居中:

.box .image {
height: 160px;
width:400px;
background-color:#ff1769;
background-image: url('http://www.google.co.uk/intl/en_ALL/images/srpr/logo11w.png');
background-size:47% 100%;
}

参见 FIDDLE

关于html - 在百分比宽度 div 内居中固定宽度的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20054256/

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