Would like to duplicate a header navigation menu on a sister site but the css applied to the header is comprised of specific and non-specific styles. Is there an easy way to select just the styles needed to duplicate a chunk of html on a page or is the only way to select each child element at a time and copy and paste the CSS?
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Clients</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>