in the below code is this possible to change the color of deep linking div through input checkbox hack 
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Document</title>
</head>
<style>
  .checkclick:checked .hello {
    color: blue;
  }
</style>
<body>
<div>
  <input type="checkbox" id="check" class="checkclick" />
  <span>Hello One next</span>
</div>
<div class="one">
  <div class="two">
    <div class="hello">hello world</div>
  </div>
</div>
  </body>
</html> 
     
     
    