将样式应用于仅第一级td标签

编程入门 行业动态 更新时间:2024-10-27 00:28:58
本文介绍了将样式应用于仅第一级td标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

有没有办法只对一级td标签应用Class'样式?

Is there a way to apply a Class' style to only ONE level of td tags?

<style>.MyClass td {border: solid 1px red;}</style> <table class="MyClass"> <tr> <td> THIS SHOULD HAVE RED BORDERS </td> <td> THIS SHOULD HAVE RED BORDERS <table><tr><td>THIS SHOULD NOT HAVE ANY</td></tr></table> </td> </tr> </table>

推荐答案

Is there a way to apply a Class' style to only ONE level of td tags?

是 * :

.MyClass>tbody>tr>td { border: solid 1px red; }

但是! '> '直接子选择器在IE6中不起作用。如果你需要支持那个浏览器(你可能会这样做,alas),你可以单独选择内部元素并取消设置样式:

But! The ‘>’ direct-child selector does not work in IE6. If you need to support that browser (which you probably do, alas), all you can do is select the inner element separately and un-set the style:

.MyClass td { border: solid 1px red; } .MyClass td td { border: none; }

* 第一个示例引用在您的HTML中找不到的 tbody 元素。它应该已经在你的HTML,但浏览器通常是确定的离开它...他们只是添加在幕后。

*Note that the first example references a tbody element not found in your HTML. It should have been in your HTML, but browsers are generally ok with leaving it out... they just add it in behind the scenes.

更多推荐

将样式应用于仅第一级td标签

本文发布于:2023-07-13 03:18:56,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1099784.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:应用于   样式   标签   td

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!