如何将 Bootstrap 菜单样式设置为 V 字样?

How to style Bootstrap menu like a V?

是否可以使用 CSS 在 Bootstrap 中像这样设置菜单样式(参见 link http://i.stack.imgur.com/Z5YB6.jpg)?

我该怎么办?

提前致谢!

您必须在菜单背景中使用箭头形状的图像,使文字朝下。 对于 bootstrap 你可以在 .navbar-default class

中使用它
.navbar-default {
     padding-bottom: 70px;
     background:url('imagename.png') no-repeat bottom center #000;
}