滑块与标题显示表

时间:2015-05-16 14:17:55

标签: jquery html css

我用jQuery循环创建了一个滑块。我被设置了

.image img {
    width: 100%; 
    height: 100%;
    position: absolute;
    display: table; 
}

标题

.caption {
    position: relative;
    z-index: 99;    
    color: white;
    text-align: center;
    display: table-cell; 
    vertical-align: middle; 
}

这个东西将文本对齐到中间和中间。好。但是当我将幻灯片#1更改为幻灯片#2并且在我回到幻灯片#1后,文本不会停留在中间位置。

enter image description here

1 个答案:

答案 0 :(得分:1)

我解决了!

jQuery删除滑块后删除display: table;。我使用display: table !important;来解决此问题。