I've tried the following:
:checked + *
{
font-weight: bold;
}
With the following html:
<p><input type = "radio" name = "blah" />some text</p>
How would I go about styling such text?
Solution:
Throw label tags around the text, and select with
:selected + *
It works in opera and ff3, so I'm good.