1

このjsfiddleと次のコードを見て、ナビゲーションバーの最初だけに背景画像を追加する方法を教え<li>てください。

.navbar-inner{
  background:none ! important;
}

li:first-child {
  background-image: url(http://themes/kids/images/lava-top.png);
  background-repeat: repeat-x;

}
4

1 に答える 1

1

これを参照してください。

.navbar .nav > li:first-child > a, .navbar .nav > li:first-child > a:hover, .navbar .nav > li:first-child > a:focus
{
    background-image: url(https://www.google.com/images/srpr/logo6w.png);
  background-repeat: repeat-x; 
}
于 2013-10-03T03:38:35.853 に答える