라디오 버튼 정렬에 문제가 있습니다. 라디오 버튼의 위치를 자유롭게 설정하고 싶습니다. 그러나 코드를 사용하여 올바르게 설정할 수는 없습니다.테이블 셀의 라디오 버튼 위치 설정
상단에서 가운데에 머물러 있으며 변경 가능한 부분은 margin-left
입니다. 아무도 도와 줄 수 있습니까?
여기 내 코드를 찾을 수 있습니다 https://jsfiddle.net/3vL8Lgo9/
.divTable {
display: table;
}
.divTableRow {
display: table-row;
}
.divTableHeading {
background-color: #EEE;
display: table-header-group;
}
.divTableCell,
.divTableHead {
display: table-cell;
padding: 3px 10px;
}
.divTableHeading {
background-color: #EEE;
display: table-header-group;
font-weight: bold;
}
.divTableFoot {
background-color: #EEE;
display: table-footer-group;
font-weight: bold;
}
.divTableBody {
display: table-row-group;
}
<table class="divTable" border="1" cellspace="0" cellpadding="0" style="width:1134px; height:756px;">
<tbody class="divTableBody">
<tr class="divTableRow">
<td class="divTableCell" style="width:900px; height:194px;" colspan="4"></td>
<td class="divTableCell" style="width:234px; height:194px;"></td>
</tr>
<tr class="divTableRow">
<td colspan="5" style="width:1134px; height:185px;"></td>
</tr>
<tr class="divTableRow" style="padding-top:100px;">
<td class="divTableCell" rowspan="2" style="width:140px; height:293px;"></td>
<td class="divTableCellRadioButton" style="width:35px; height:146px;">
<input type="radio" name="gender" value="male">
</td>
<td class="divTableCell" rowspan="2" style="width:251px; height:293px;"></td>
<td class="divTableCellRadioButton" style="width:35px; height:146px;"></td>
<td class="divTableCell" rowspan="2" style="width:673px; height:293px;"></td>
</tr>
<tr class="divTableRow">
<td class="divTableCellRadioButton" style="width:35px; height:146px;"></td>
<td class="divTableCellRadioButton" style="width:35px; height:146px;"></td>
</tr>
<tr class="divTableRow">
<td class="divTableCell" style="width:1000px; height:84px;" colspan="4"></td>
<td class="divTableCell" style="width:134px; height:84px;"></td>
</tr>
</tbody>
</table>
사용'수직 정렬 : 하단,'또는'수직 정렬 : 상단하며'TD에는'이 위로 이동 만들려면 아래 –