What do two dots in a CSS declaration mean?

后端 未结 6 1097
予麋鹿
予麋鹿 2020-12-31 00:56

This is a bit of code from Twitter Bootstrap

.navbar .nav.pull-right .dropdown-menu,
.navbar .nav .dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
         


        
6条回答
  •  旧时难觅i
    2020-12-31 00:58

    .nav.pull-right means match elements that have the class "nav" and the class "pull-right".

提交回复
热议问题