My toggle trigger works perfectly in Chrome, but I'm having trouble getting it to work in Safari. Any suggestions?
<a href='#show'class='show'>see more --></a>
<a href='#hide'class='hide'>hide</a>
<div class='hidden-stuff'>
hidden divs
</div>
Here's the CSS I'm using:
.show:focus + .hide {display: inline; }
.show:focus + .hide + .hidden-stuff {display: block;}