我正在使用此计算器,并且当用户选择一种类型时,应该出现一个小表以从该表中选择一种类型,但应单击的单选按钮不适合该表
这是在表的ccs代码中查找,在jsfiddle link 中是完整代码
table {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
width: 100%;
table-layout: fixed;
}
.rad
{width:1em;
height:1em;}
table thead,
table tbody {
display: block;
}
table thead th ,table tbody td
{
font-size : 12px;
}
table tbody {
max-height: 100px;
overflow-y: overlay;
overflow-x: hidden;
}
tr:hover{
background-color:gray;
cursor:pointer;
}
table tbody td, table thead th {
text-align: center;
}
table tbody td:last-child, table thead th:last-child {
border-right: none;
}
table tbody td:first-child, table thead th:first-child {
width: 10px;
}
table tbody td:nth-child(2), table thead th:nth-child(2) {
width: 100px;
}
table tbody td:nth-child(3), table thead th:nth-child(3) {
width: 100px;
}
table tbody td:nth-child(4), table thead th:nth-child(4) {
width: 100px;
}
table tbody td:nth-child(5), table thead th:nth-child(5) {
width: 100px;
}
最佳答案
只需从position: absolute
的css中删除input[type="radio"]
。工作Fiddle。