HTML 上下文选择器示例
提问人:刘团圆发布时间:2020-10-10
<style type="text/css">
a{color:red;font-size:20}
table a{color:green;font-size:25}
table a:hover{color:blue}
</style>
<body>
<a href="http://www.softedu.com">北软教育</a>
<table>
<tr>
<td><a href="http://www.softedu.com">北软教育</a></td>
<td>北软教育</td>
</tr>
</table>
</body>
<HTML>
<HEAD>
<TITLE>上下文选择器</TITLE>
<STYLE TYPE="text/css">
BODY{color:blue;background:lavender;font-family:Arial;}
UL {color:red }
ul a{color:green; font-size:15}
</STYLE>
<HEAD>
<BODY>
<UL><LI><a href="">芒果</a><LI>桔子<LI>苹果</UL>
<OL><LI>芒果<LI>桔子<LI>苹果</OL>
</BODY>
</HTML>
继续查找其他问题的答案?
相关视频回答
回复(0)
点击加载更多评论>>