很抱歉,我的知识不足,但是我在服务器上安装了limesurvey 1.9。
http://ankaracity.com/wingo/index.php?sid=41381
我需要将每个答案放在彩色框内。
并且需要使选定答案的颜色为黑色。
那么用CSS可以做到吗?
我该怎么办?
谢谢。
最佳答案
您可以添加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;
}
关于php - 如何更改LimeSurvey单选按钮样式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17131601/