1

我尝试了以下方法:

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

使用以下html:

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

我将如何设计此类文本的样式?

解决方案:

在文本周围添加标签标签,并使用
:selected + *进行选择

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

4

1 回答 1

2

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

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

然后使用 [for="foo"] 或 #foo + label 或其他选择。

于 2009-04-30T01:35:19.080 回答