There are two div elements in my HTML code:
<body>
<div id="one"></div>
<div></div>
</body>
I am looking to hide the div elements after the one with id="one"
using CSS. I attempted this method:
#one:after{display:none}
However, this approach did not work. Is there any alternative way to achieve this?