如何查找CSS选择器

时间:2015-06-21 15:55:38

标签: css css-selectors

我无法定位特定元素。我试图改变小部件的背景颜色。我的问题是这个小部件在网站上的几个地方使用,所以如果我通过CSS改变一些东西,它会在所有小部件中发生变化。我通过检查元素尝试了不同的选择器组合。我找不到合适的人。该网站在http://titanpanama.com/newsite/我试图更改标题特殊项下的列表项的背景颜色。我试过了

.specials-home .home-estate-widget .post-list li{ background-color:#000; }

我尝试在容器中添加一个类。我哪里错了?

2 个答案:

答案 0 :(得分:0)

要专门定位特价小部件中的列表项,请使用:

.specials-home ul.post-list li {
  background: #000;
}

enter image description here

答案 1 :(得分:0)

试试这个:

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
    if let localNotification = launchOptions?[UIApplicationLaunchOptionsLocalNotificationKey] as? UILocalNotification {
        //do your thing here
    }

    return true
}

它针对具有类.specials的元素中的所有子元素。

enter image description here