<td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)"
onkeyup="Menu_Key(event)" id="menun0">
<table class="menu_static_item menu_4" cellpadding="0" cellspacing="0"
border="0" width="100%">
<tbody>
<tr>
<td style="white-space:nowrap;">
<a class="menu_1 menu_static_item menu_3" href="javascript:__doPostBack('menu','1')"
style="border-style:none;font-size:1em;">
Monthly Report
</a>
</td>
</tr>
</tbody>
</table>
</td>
<td style="width:3px;">
</td>
<td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)"
onkeyup="Menu_Key(event)" id="menun1">
<table class="menu_static_item menu_4" cellpadding="0" cellspacing="0"
border="0" width="100%">
<tbody>
<tr>
<td style="white-space:nowrap;">
<a class="menu_1 menu_static_item menu_3" href="javascript:__doPostBack('menu','2')"
style="border-style:none;font-size:1em;">
YTD Report
</a>
</td>
</tr>
</tbody>
</table>
</td>
<td style="width:3px;">
</td>
我想将没有id的td的宽度减为零。
或者有谁知道怎么去除ASP.NET的Menu控件生成的这些多余td元素 ?
ASP.NET 不会 CSS倒是可以
td {display:none}
td[id] {display:table-cell}
用css优先级来实现,针对同一元素用不同选择器定义
http://www.w3school.com.cn/css/css_selector_descendant.asp,我想w3c是是回答你的最好方式,在这里不应该贴代码为具体的问题,这不适合啊
CSS3有个not选择器,例如:
就是选择所有p元素 但是排除id为p1的p元素