Is there a way to remove a horizontal line using CSS?
Here is the HTML code snippet:
<div id='page'>
<div id='header'>
</div>
<hr>
</div>
I attempted this method:
#page hr:first-child{display:none;}
However, this approach did not yield the desired result. Since I need to display other horizontal lines on the page, simply removing all of them is not an option. Is there a way to target only this specific horizontal line?