<div id="foo">
<a id="bar1">show me</a>
hide me
<a id="bar2">hide me too</a>
</div>
How do I use CSS (display:none;) to only have the first a element visible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This won’t work:
This works, but
visibility: hiddenhas it’s own downsides:display: inline-block/blockis seemingly required to make this work in IE8.That’s the closest you can get without changing your HTML:
HTML:
CSS: