我想在WP插件ContactForm7中设置我的单选按钮样式,我正在使用此网站的源代码:Source CSS code
单击/选中单选按钮时,它应变为绿色:
private void Completed(object sender, RunWorkerCompletedEventArgs e)
{
if(e.Error != null)
{
// Oh no something went wrong...
}
running = false;
}
我使用哪种选择器?我怎么做到的?
注意:如果我把'活跃''而不是检查,然后当我按下鼠标按钮时它闪烁绿色...
我迷路了!谢谢你的帮助!
答案 0 :(得分:0)
Go for:focus,
这应该有用。