因此,当我要参考导航上的关于我们的列表时,它将破坏导航设计。

我还使用了优化标签,因为代码可能存在问题,可能需要修复!
这也是一张有关其外观的图片:http://puu.sh/8PJDC.jpg
您可以在我上传html和CSS时访问:http://codepen.io/anon/pen/xfFgc
问题出在Nav的“更多”选项卡上,关于我们的信息很大!
注意:我没有编写所有代码!

谢谢,痛苦

最佳答案

这种样式适用于您的li > a

ul li a {
line-height: 80px;
padding: 0 20px;
height: 80px;
color: #777;
-webkit-transition: all .1s ease-out;
-moz-transition: all .1s ease-out;
-ms-transition: all .1s ease-out;
-o-transition: all .1s ease-out;
transition: all .1s ease-out;
}


用适当的样式替换。

09-11 18:49
查看更多