0

我一直在尝试各种列技术,我喜欢这个。我计划在它们下方再放一张图片并居中。一旦选择,我就会翻转图像。我的问题是背面的文本(.flip-item-desc)从容器(#top div)继承了 50% 的宽度。我不知道如何使文本 div 填充图像的背面。

#top div, #bottom div{
background-color: aqua;
text-align: center;
margin: 1% auto;
width: 50%;
height: auto;
}
.flip-item-desc{
font-family: sans-serif;
font-weight: bold;
color: white;
text-align: center;
font-size: 80%;
line-height: 1.237;
background: rgba(0,0,0,0.5);
width: 96%;
height: auto;
margin: 2% 2%;
padding: 2%;
position: absolute;
top:0;
left: 0;
overflow: hidden;
}

我在这里复制并粘贴了带有托管图像的代码: https ://jsfiddle.net/digi57/ojLtu049/1/

4

1 回答 1

1

我在您的 CSS 代码中添加了几行 -

.flip-item-desc {
    min-width: 96%;
}
.back {
    overflow: hidden;
}

这是小提琴 - https://jsfiddle.net/ojLtu049/2/

于 2015-07-29T15:34:55.787 回答