How to implement Read more / Read less in pure CSS
I am implementing a CSS read more / read less capability using http://codepen.io/Idered/pen/AeBgF as a starting point. I modified it to work off <p> tags vs. <li> list items. I can't get the code to work on my page at http://bit.ly/1L5vMm7 Here is my version of the CSS: input.read-more-state { display: none; } p.read-more-target { font-size: 0; max-height: 0; opacity: 0; transition: .25s ease; } input.read-more-state:checked ~ div.read-more-wrap p.read-more-target { font-size: inherit; max-height: 999em; opacity: 1; } input.read-more-state ~ label.read-more-trigger:before { content: 'Read more