I want to apply style for first ul tag.Here i applied a css for first ul tag
.profile >ul:first-child {
display: none;
}
But,Its not working here
<div class="profile">
<h3>Account information</h3>
<ul>
<li>item1</li>
<li>item2</li>
<li>item3</li>
</ul>
<h3>Recent infomation</h3>
<ul>
<li>item11</li>
<li>item21</li>
<li>item31</li>
</ul>
</div>