加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 资源网站 > 资源 > 正文

在html或css中倾斜的对角线?

发布时间:2020-12-14 18:25:59 所属栏目:资源 来源:网络整理
导读:我想做一个这样的表 是否可以在表格中添加倾斜的对角线边框? 解决方法 基于 CSS3 linear-gradients解决方案,但角度不是硬编码的: table:nth-of-type(1) td { background-image: linear-gradient( to top right,white 48%,black,white 52% );}table:nth-of-
我想做一个这样的表

是否可以在表格中添加倾斜的对角线边框?

解决方法

基于 CSS3 linear-gradients解决方案,但角度不是硬编码的:
table:nth-of-type(1) td {
  background-image: linear-gradient(
    to top right,white 48%,black,white 52%
  );
}
table:nth-of-type(2) td {
  background-image: linear-gradient(
    to top right,papayawhip calc(50% - 1px),papayawhip calc(50% + 1px)
  );
}
/* for testing */
table {
  border-collapse: collapse;
  margin-top: 1em;
  margin-bottom: 1em;
}
td:nth-child(odd) {
  width: 10em;
}
td:nth-child(even) {
  width: 20em;
}
<table border="1">
  <tbody>
    <tr>
      <td>Narrow</td>
      <td>Wide</td>
    </tr>
    <tr>
      <td>Narrow</td>
      <td>Wide</td>
    </tr>
  </tbody>
</table>
<table border="1">
  <tbody>
    <tr>
      <td>Narrow</td>
      <td>Wide</td>
    </tr>
    <tr>
      <td>Narrow</td>
      <td>Wide</td>
    </tr>
  </tbody>
</table>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读