Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- HTML:
- <p id="test"> <a>text i don't want to hide</a> <a>text i want to hide</a><span>other text i want to hide</span> </p>
- CSS:
- #test a:nth-of-type(2) {
- display:none;
- }
- #test span {
- display:none;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement