UL高度不正确。与transform-origin或perspective-origin或-webkit-min-logical-width相关

时间:2017-06-05 07:55:01

标签: html css css3 google-chrome

我正在从Rokaux M-store模板实施帐户页面。出于某种原因,它在我的机器中看起来不同。

差异是UL高度为0px,而原始应为57px。其他不同的计算项是transform-origin或perspective-origin或-webkit-min-logical-width。

差异来自哪里?

应该看起来像: enter image description here

然而它看起来像 enter image description here

1 个答案:

答案 0 :(得分:0)

问题在于float

只需将此样式添加到CSS即可。将.nav-tabs > li设为float: none;

将此样式更具体地仅限于此部分,方法是将其引用到父级custom class。例如:.customClass .nav-tabs > li

CSS:

.nav-tabs > li {
    float: none;
    margin-bottom: -1px;
}