高表格通常设计用于显示复杂的数据组织,其中视觉突出显示特定部分可以增强用户的理解。传统上,:hover 伪类应用于单个元素,例如表格单元格。但是,可以使用 CSS 将此功能扩展到对元素(例如列或行)进行分组。
通过利用 :: before 和 ::after 伪元素,突出显示可以应用于所选元素之外。这些元素本质上创建了可以相对于其父元素放置的虚拟元素。
要将突出显示应用于行和列,请使用以下步骤:
CSS:
table { border-spacing: 0; border-collapse: collapse; overflow: hidden; z-index: 1; } td, th, .row, .col { cursor: pointer; padding: 10px; position: relative; } td:hover::before, .row:hover::before { background-color: #ffa; content: '<pre class="brush:php;toolbar:false"><table> <tr> <th></th> <th class="col">50kg</th> <th class="col">55kg</th> <th class="col">60kg</th> <th class="col">65kg</th> <th class="col">70kg</th> </tr> <tr> <th class="row">160cm</th> <td>20</td><td>21</td><td>23</td><td>25</td><td>27</td> </tr> <tr> <th class="row">165cm</th> <td>18</td><td>20</td><td>22</td><td>24</td><td>26</td> </tr> <tr> <th class="row">170cm</th> <td>17</td><td>19</td><td>21</td><td>23</td><td>25</td> </tr> <tr> <th class="row">175cm</th> <td>16</td><td>18</td><td>20</td><td>22</td><td>24</td> </tr> </table>
HTML:
此方法提供了一种灵活且可自定义的解决方案,用于突出显示表中的行和列。
以上是如何使用 CSS 突出显示表格中的行和列?的详细内容。更多信息请关注PHP中文网其他相关文章!