I have the below mark-up to style. Problem I have is I only want to show partial of it.
The text within .standfirst needs to hide but text within .byline needs to show.
Is that even possible with CSS?
<p class="standfirst">
<span class="article-info"><em class="byline">Rory Callinan</em></span>
A FORMER nightwatchman at the Port Macquarie company accused of dumping contaminated waste.
</p>
The best way would be to refactor your HTML so you could easily select the portion you want visible.
However, it is possible (albeit ugly) using that markup.
jsFiddle.