定制顽固的UL元素

时间:2016-01-19 20:19:20

标签: html css blogger

我想li:第一个孩子是大胆的,我已经实现但是这影响了我的下拉菜单中的第一个元素,在导航栏中 - 标题" Social"。我想只有第一个选项卡是粗体和其他一切font-weight:normal。但我在编写这种效果时遇到了非常困难的时期。我尝试了一些变化但无济于事。我已经详细介绍了css编码:

#topdropnav li:first-child a {
font-weight: bold!important;
margin-left: 20px;
  }

我博客的网址如下:http://www.blankesque.com

1 个答案:

答案 0 :(得分:3)

您可以使用direct descendant选择器:

#topdropnav > ul > li:first-child a {
  font-weight: bold!important;
  margin-left: 20px;
}