我正在开发一个带有示例的项目,该示例可以简化为以下内容。CSS 中使用的技术的名称是什么?
<html>
<head>
<style type="text/css">
#numberone #numbertwo #numberthree
{
color: red;
}
</style>
</head>
<body>
<div id="numberone">
<div id="numbertwo">
<div id="numberthree">
This is red
</div>
</div>
</div>
<div id="numberthree">
This is not red
</div>
</body>
</html>