如何在以下方式设置文本样式:选中单选按钮?

时间:2009-04-30 01:23:09

标签: css css-selectors dynamic-css

我尝试了以下内容:

:checked + *  
{  
font-weight: bold;  
}

使用以下html:

<p><input type = "radio" name = "blah" />some text</p>

我如何设计这样的文字?

解决方案:

在文本周围投掷标签标签,然后用
选择 :选择+ *

它适用于opera和ff3,所以我很好。

1 个答案:

答案 0 :(得分:2)

您可以使用label元素将文本和其他内联内容与表单输入相关联:

<input id="foo" ...> <label for="foo" ...>foo text</label>

然后选择[for =“foo”]或#foo + label或其他任何内容。