抱歉,我对此一无所知,但我在我的服务器上安装了limesurvey 1.9。http://ankaracity.com/wingo/index.php?sid=41381
我需要把每个答案放在彩色盒子里。
并且需要将选择的答案颜色设置为黑色。那么,使用css可以做到这一点吗?我该怎么做呢?谢谢。
发布于 2013-06-17 22:50:21
您可以添加css代码来删除单选圆形并使其突出显示(选中时)(我仍然不知道如何对每个答案执行此操作)
/*
Change the look'n'feel of labels (which are adjacent to radiobuttons).
Add some margin, padding to label
*/
input[type=radio] + label {
margin:-2px;
*/ padding: 4px 10px;
background-color: #ffffff;
color: #ff0000;
border: 1px solid #2f5376;
padding: 0 0 0 0;
}
/*
Change background color for label next to checked radio button
to make it look like highlighted button
*/
input[type=radio]:checked + label {
background-image: none;
background-color:#ff0000;
color:#ffffff;
padding: 0 0 0 0;
}https://stackoverflow.com/questions/17131601
复制相似问题