小小笔记 2016-03-30 07:38 采纳率: 80%
浏览 1992
已采纳

为何用于设置表格的class作用不上来?

样式class1使用后没反应,代码如下

  1. <style type="text/css">
  2. #city th{
  3. background-color: darkcyan;
  4. }
  5. #city tfoot td{
  6. background-color: darkgrey;
  7. }
  8. #city{
  9. border-collapse: collapse;/*设置表格的边框合并为一个单一的边框*/
  10. /*border: 1px solid salmon;*/
  11. }
  12. #city th,td{
  13. border: 1px solid salmon;
  14. }
  15. .class1{
  16. border-bottom: 1px solid darkseagreen;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <table width="400px" id="city" >
  22. <caption>首都</caption>
  23. <thead>
  24. <tr>
  25. <th>北京</th>
  26. <th>北京</th>
  27. <th>北京</th>
  28. </tr>
  29. </thead>
  30. <tr class="class1">
  31. <td>&nbsp;</td>
  32. <td>&nbsp;</td>
  33. <td>&nbsp;</td>
  34. </tr>
  35. <tr class="class1">
  36. <td>&nbsp;</td>
  37. <td>&nbsp;</td>
  38. <td>&nbsp;</td>
  39. </tr>
  40. <tfoot>
  41. <tr><td colspan="3">以上资料纯属虚假</td></tr>
  42. </tfoot>
  43. </table>
  44. </body>
  45. </html>

展开全部

  • 写回答

2条回答 默认 最新

  • 斯洛文尼亚旅游 2016-03-30 17:08
    关注
         tr.class1 td {
            border-bottom: 1px solid darkseagreen;
        }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥66 android运行时native和graphics内存详细信息获取
  • ¥100 求一个c#通过CH341读取数据的Demo,能够读取指定地址值的功能
  • ¥15 rk3566 Android11 USB摄像头 微信
  • ¥15 torch框架下的强化学习DQN训练奖励值浮动过低,希望指导如何调整
  • ¥35 西门子博图v16安装密钥提示CryptAcquireContext MS_DEF_PROV Error of containger opening
  • ¥15 mes系统扫码追溯功能
  • ¥40 selenium访问信用中国
  • ¥20 在搭建fabric网络过程中遇到“无法使用新的生命周期”的报错
  • ¥15 Python中关于代码运行报错的问题
  • ¥500 python 的API,有酬谢
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部