我想从显示在共享点日历列表中的日期中删除链接。如果我使用开发人员的工具,我看不到任何可以应用 CSS 禁用的锚标记。我必须通过 CSS 本身来实现这一点。
下面给出的代码来自sharepoint:
<tr class="ms-acal-summary-dayrow"> //Tr which has a class
<td date="5/12/2013" evtid="day">//td i dont know how they fetching this value and entire td has link which has to be removed.
<div>
<nobr>
Text -12 //this text "12"has link
</nobr>
</div>
</td>
</tr>
Text-12 有我想删除的链接。我如何通过 CSS 实现这一点?