文字在Chrome中显示不正确但在FF中有效吗?

时间:2013-03-25 07:36:08

标签: html css nivo-slider

请检查图像 enter image description here

在chrome bit.ly/10bYbyi中 你可以在FF bit.ly/10bYbyi中看到它正常工作。

我想通过css修复此问题,但是当我打开调试工具并关闭它而不进行任何更改时,文本将显示正确。

为什么会这样?我应该怎样做才能使文本滑块在Chrome中正确显示。

2 个答案:

答案 0 :(得分:2)

请试试这个:

我们需要设置 max-width 属性来解决Chrome问题。

使用以下CSS。

.nivo-caption {
   max-width: 600px!important;
   min-width: auto!important;
   display: block!important;
}

答案 1 :(得分:2)

使用!important css flag-

设置最小宽度
.nivo-caption{
   min-width:600px!important;
}