css - 如何在 100% 的容器宽度中将一行相对居中的 <div> 居中

标签 css hover css-position css-transitions center

我正在尝试将一排相对居中的 div 居中,这些 div 包含具有悬停过渡的图像,这些图像会变成另一个图像。

在使悬停过渡起作用的过程中,我将每个 div 的容器定位为 position: relative。

随着窗口浏览器变小以使其响应,我试图让行居中。发生的行为虽然很奇怪。当浏览器窗口太小无法容纳图像行时,图像将跳到第二行,但它会停在屏幕左侧一点,但不会停在中间。

有没有人能解决或理解为什么会发生这种情况?理想情况下,我希望跳到第二行的图像居中。

这是我的代码:

http://jsfiddle.net/4kfbh018/

HTML

<div class="center-logo">
<div class="nbc-container">
<a href="#">
    <div class="nbc press">
        <span></span>
    </div>
</a>
</div>

<div class="npr-container">
<a href="#">
    <div class="npr press">
        <span></span>
    </div>
</a>
</div>

<div class="washington-container">
<a href="#">
    <div class="washington press">
        <span></span>
    </div>
</a>
</div>

<div class="bbc-container">
 <a href="#">
    <div class="bbc press">
        <span></span>
    </div>
 </a>
</div>

<div class="forbes-container">
<a href="#">
    <div class="forbes press">
        <span></span>
    </div>
</a>
</div>

<div class="cnet-container">
<a href="#">
    <div class="cnet press">
        <span></span>
    </div>
</a>
</div>

</div>

CSS

.center-logo {
margin: 0 auto;
height: 99px;
width: 100%;
}

.press {
    top: 0; bottom: 0; left: 0; right: 0; 
}

.press:hover span {
    opacity: 1;
}

.nbc {
    background-image: url('http://www.yodamark.net/files/7114/0570/5786/nbc.jpg');
    height: 79px;
    width: 79px;

}

.nbc-container {
    height: 79px;
    margin: 10px 10px;
    width: 79px;
    float: left;
}

.nbc span {
    height: 79px;
    width: 79px;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0; 
    background-image: url('http://www.yodamark.net/files/4114/1168/9420/nbc-b.jpg');
    opacity: 0;
    transition: linear .2s, box-shadow linear .2s;
    -webkit-filter: grayscale(1);
} 


.npr {
    height: 41px;
    width: 109px;
    background-image: url('http://www.yodamark.net/files/6414/0570/5787/npr.jpg');
    height: 41px;
    width: 109px;
}

.npr-container {
    height: 41px;
    margin: 25px 10px 0 10px;
    width: 109px;
    float: left;
}

.npr span {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0; 
    background-image: url('http://www.yodamark.net/files/6414/1168/8919/npr-b.jpg');
    height: 41px;
    width: 109px;
    opacity: 0;
    transition: linear .2s, box-shadow linear .2s;
    -webkit-filter: grayscale(1);
} 

.washington {
    background-image: url('http://www.yodamark.net/files/6514/0570/5787/wapo.jpg');
    height: 34px;
    width: 232px;
}

.washington-container {
    float: left;
    height: 41px;
    margin: 25px 10px 0 10px;
    width: 232px;
}

.washington span {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0; 
    background-image: url('http://www.yodamark.net/files/6214/1168/8864/wapo-b.jpg');
    height: 34px;
    width: 232px;
    opacity: 0;
    transition: linear .2s, box-shadow linear .2s;
    -webkit-filter: grayscale(1);
} 

.bbc {
    background-image: url('http://www.yodamark.net/files/2914/0570/5785/bbc.jpg');
    height: 35px;
    width: 186px;
}

.bbc-container {    
    height: 35px;
    margin: 25px 10px 0 10px;
    width: 186px;
    float: left;
}

.bbc span {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0; 
    background-image: url('http://www.yodamark.net/files/1314/1168/9450/bbc-b.jpg');
    height: 35px;
    width: 186px;
    opacity: 0;
    transition: linear .2s, box-shadow linear .2s;
    -webkit-filter: grayscale(1);
}

.forbes {
    background-image: url('http://www.yodamark.net/files/2614/0570/5786/forbes.jpg');
    height: 38px;
    width: 117px;
}

.forbes-container {
    height: 38px;
    margin: 25px 10px 0 10px;
    width: 117px;
    float: left;
}

.forbes span {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0; 
    background-image: url('http://www.yodamark.net/files/1514/1168/9431/forbes-b.jpg');
    height: 38px;
    width: 117px;
    opacity: 0;
    transition: linear .2s, box-shadow linear .2s;
    -webkit-filter: grayscale(1);
}

.cnet {
    background-image: url('http://www.yodamark.net/files/5314/0570/5785/cnet.jpg');
    height: 83px;
    width: 85px;
}

.cnet-container {
    height: 83px;
    margin: 0 10px;
    width: 85px;
    float: left;
}

.cnet span {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0; 
    background-image: url('http://www.yodamark.net/files/8014/1168/9440/cnet-b.jpg');
    height: 83px;
    width: 85px;
    opacity: 0;
    transition: linear .2s, box-shadow linear .2s;
    -webkit-filter: grayscale(1);
}

最佳答案

无 float

使用 display:inline-block 而不是 float:left

text-align:center 除了将其中的内容居中之外,对 float 元素没有任何影响。

可以看到here我在哪里覆盖了你的 CSS。

关于css - 如何在 100% 的容器宽度中将一行相对居中的 <div> 居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26309646/

相关文章:

html - img 在弹出窗口中的绝对定位

css - 在 CSS Grid 中将列宽设置为内容宽度

HTML 源 newlike 在对象之间留出空间 - 如何摆脱这个?

html - 如何为每台设备将带有两张图片的链接居中?

css - 响应式 2 列绝对定位

css - 通过 CSS 修改父元素来影响子元素。是否可以?

javascript - 在没有内联事件的情况下调用 javascript 函数

html - 将响应式图像链接到 URL

jquery - 如何优雅地展开 jQuery UI 工具提示?

css - IE10悬停效果不起作用