为什么我不能用课程来定位此链接

时间:2014-06-28 00:20:57

标签: html css

取消关联类似问题

Why can't I target the links in this class

我似乎无法将一个类别的链接定位到另一个带有类的链接旁边。

html。

<div class="tribe-events-cal-links">

<a class="tribe-events-gcal tribe-events-button" href="#" title="Add to Google Calendar">+ Google Calendar</a>

<a class="tribe-events-ical tribe-events-button" href="http://localhost/bcu/event/test/?ical=1&amp;tribe_display=">+ iCal Import</a>

</div>

我希望能够display: none;,但我似乎无法针对该特定链接。

我试过了。

tribe-events-ical >a {
    display: none;
}

和所有的变化,但我相信我做错了,我似乎无法找到一个例子哦怎么做。

谢谢。

1 个答案:

答案 0 :(得分:2)

您需要查看CSS选择器。使用前导.定义类,并且元素应位于其前面。

所以你的CSS应该是:

a.tribe-events-ical {
    display: none;
}