How do I make an entire row of a table clickable in css?
如果我有以下代码,我会添加什么来使一行作为链接可点击? (温和点,我是新手)我已经尝试了几件事,但我对此很陌生,所以我很难做到正确:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
.hoverTable { width: 700px; border-collapse: collapse; } .hoverTable td { /* Define the default color for all the table rows */ /* Define the hover highlight color for the table row */ /* Define the hover highlight color for the table row */ |
1 2 3 4 5 6 7 8 9 10 11 12 13 | <table class="hoverTable" style="width: 700px;"> <tbody> <tr class="clickable-row" data-href="mathdept.ucr.edu"> <td colspan="3">CENTER FOR MATHEMATICAL & COMPUTATIONAL MODELING IN BIOLOGY & MEDICINE<span style="float: right;">a–oa–o</span><br /></td> </tr> <tr> <td colspan="3">OUR PEOPLE – COMMITTEES <span style="float: right;">a–oa–o</span></td> </tr> <tr> <td colspan="3">SEMINARS, COLLOQUIUM, CONFERENCES & RESEARCH <span style="float: right;">a–oa–o</span></td> </tr> </tbody> </table> |
HTML 有两种基本类型的元素,内联元素和块元素。
如果您想了解更多信息,请阅读此处。
因为它们的
1
2 3 |
a {
display: block; } |
现在anker 将填满整个单元格。
您将在下面找到有关此解决方案如何工作的代码示例。
我有两个额外的建议给你作为初学者:
使用非标准字体
请注意,如果您使用像
如果您想使用自定义字体,请阅读此处。
如果没有必要,不要使用表格
使用表格显示导航或其他非表格数据通常被认为是一种糟糕的代码风格。
您将在下面找到外观相同的导航框,而无需使用 html 表格。这段代码可以被认为更干净。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
.nav { width: 700px; /* Define the width of the navigation box */ padding: 0; } .nav li { /* Define the style of the ankers */ /* Define the hover style for the ankers */ /* Define the Arrows */ |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <ul class="nav"> <li> CENTER FOR MATHEMATICAL & COMPUTATIONAL MODELING IN BIOLOGY & MEDICINE </li> </ul> |
带表的原始解决方案
如果您出于某种原因更喜欢表格解决方案,请在此处找到固定代码。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
.hoverTable { width: 700px; border-collapse: collapse; } .hoverTable td { /* Define the style for normal and visited links */ /* Define the hover style for the links */ |
1 2 3 4 5 6 7 8 9 10 11 12 13 | <table class="hoverTable"> <tbody> <tr class="clickable-row" data-href="mathdept.ucr.edu"> <td colspan="3">CENTER FOR MATHEMATICAL & COMPUTATIONAL MODELING IN BIOLOGY & MEDICINE<span style="float: right;">a–oa–o</span></td> </tr> <tr> <td colspan="3">OUR PEOPLE – COMMITTEES <span style="float: right;">a–oa–o</span></td> </tr> <tr> <td colspan="3">SEMINARS, COLLOQUIUM, CONFERENCES & RESEARCH <span style="float: right;">a–oa–o</span></td> </tr> </tbody> </table> |
如果我理解正确,您需要在我上传的图片中创建类似的内容:
为了创建,您需要将 href=”information” 放在标签内:
1
2 3 4 5 |
enter code here
<tr class="clickable-row"> |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/269132.html