私は、次のように単純化できる例を使用してプロジェクトに取り組んでいます。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>