私はすべてのセルをクリック可能にしようとしていますが、何らかの理由で、ボックスの半分だけがクリック可能で、上部はクリックできません。ここに私のコードは次のとおりです。テーブルセルをすべてクリック可能にするCss
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td {
border: 1px solid #dddddd;
padding: 30px;
width: 20px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
.ServerTable .Cell {
padding: 10px;
width: 80px;
cursor: pointer;
}
.Cell:hover {
background-color: deepskyblue;
}
.Cell a {
display: block;
width: 100%;
height: 100%;
}
<td align="center" class="Cell">
<a href="@Url.Action(Controller.ACTION_GROUP_MAIN, Controller.NAME, new GroupMainPageViewModel(_Node.ProbeNodeID, _Group.ID))">
<font color="blue">Details</font>
</a>
</td>
私は今、時間のかなりのカップルのために、このにチェックインされてきたし、これが起こっている理由を見つけることができないので、すべてのヘルプは素晴らしいだろう。
私は、私がいることを試してみましたかなり確信している...しかし、私は笑なかったように見えます、ありがとうございました! –
@MikaelSauriolSaadあなたは大歓迎です:) –