我在otree的html代码中有一个带有各种单选按钮的表。但是,显示的按钮非常小,因此很难点击主题。有没有办法增加他们的大小? 到目前为止,这是我的代码:
{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Choice 1
{% endblock %}
{% block content %}
<img src="{% static img_to_show %}"/>
<table class="table">
<tr>
<th> </th><th> Amount </th><th> Game</th>
</tr>
{% for field in form %}
<tr>
<td>
{{ field.label_tag }}
{{ field.errors }}
</td>
<td><input type="radio" name="{{ field.html_name}}" value="True" required {% if field.value|stringformat:"s" == 'True' %}checked{% endif %}></td>
<td><input type="radio" name="{{ field.html_name}}" value="False" required {% if field.value|stringformat:"s" == 'False' %}checked{% endif %}></td>
</tr>
{% endfor %}
</table>
{% next_button %}
{% endblock %}
答案 0 :(得分:0)
这个会缩放它们:
{% block styles %}
<style>
input[type=radio] {
transform: scale(1.5);
margin:10px;
}
</style>
{% endblock %}