单选按钮不能放在表格内吗?

问题描述 投票:0回答:1

我正在使用此计算器,并且当用户选择一种类型时,应该出现一个小表,以便从该表中选择一种类型,但应单击的单选按钮不适合该表

example

这是表的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;
}

我正在使用此计算器,并且当用户选择一种类型时,应该出现一个小表以从该表中选择一种类型,但是应单击的单选按钮不适合该表...

javascript html jquery css radio-button
1个回答
1
投票

只需从position: absolute的CSS中删除input[type="radio"]。工作Fiddle

© www.soinside.com 2019 - 2024. All rights reserved.