表与渐变边框和单元格渐变边框

时间:2015-07-14 22:58:39

标签: html css css3 border linear-gradients

我想在边框上创建一个渐变的表格,并且div边框的作用就像它们是一个完整的项目一样,我的意思是单元格的边框颜色应该是不同的。

Table with gradients

这就是我到目前为止所得到的:

table tr:first-child td {
  border-top: 0;
}
table tr:last-child td {
  border-bottom: 0;
}
table tr td:last-child {
  border-right: 0;
  border-left: 0;
}
table tr td:first-child {
  border-left: 0;
}
td {
  border-right: 2px solid #bebebe;
  border-bottom: 2px solid #bebebe;
}
td {
  border-collapse: collapse;
}
table {
  /*border-collapse: collapse;*/
  border-style: solid;
  border-width: 20px 20px;
  border-image-source: linear-gradient(to bottom, #eee 0%, #bebebe 100%);
  border-image-slice: 20;
  border-image-repeat: stretch;
  box-shadow: 0px 10px 10px black;
}
body {
  background-color: #eee;
}
<table class="tablagradiente" align="center" width="41%">
  <tr>
    <td>
      <p>Sesiones Ordinarias</p>
    </td>
    <td>
      <p>Sesiones Extraordinarias</p>
    </td>
  </tr>
  <tr>
    <td>
      <p>&nbsp;</p>
    </td>
    <td>
      <p>Primera Sesión Extraordinaria 2015</p>
    </td>
  </tr>
</table>

1 个答案:

答案 0 :(得分:12)

解决方案

通过设置以下内容,您实际上可以在没有border-image属性的情况下实现您想要的目标:

table {
  background-image: linear-gradient(to bottom, red 0%, blue 100%); /* the gradient */
  background-origin: border-box; /* set background to start from border-box */
  border-spacing: 5px; /* space between each cell */
  border: 5px solid transparent; /* optional */
}

浏览器支持:

说明

本质上我们在这里做的是:

  • linear-gradient添加为表格的background
  • 设置背景的原点,使其从表格的border-box开始。 (有关background-origin的详细信息,请参阅my answer here)。
  • 分隔表格单元格之间的边界。行(默认设置),以便通过其间的空格显示background的{​​{1}}。
  • 在表格中添加一个额外透明的table。这是可选的,仅需要,因为图像中的表格边框看起来比单元格之间的边框更粗。

&#13;
&#13;
border
&#13;
table {
  background-image: linear-gradient(to bottom, red 0%, blue 100%);  /* the gradient */
  background-origin: border-box;  /* set background to start from border-box */
  border-spacing: 5px;  /* space between each cell */
  border: 5px solid transparent;  /* optional */
}
body {
  background-color: #eee;
}

/* Just for demo */

table {
  width: 500px;
}
td {
  background: white; /* if not set cell would also be transparent and show the gradient */
}
&#13;
&#13;
&#13;

注意:我在答案中使用了红色到蓝色渐变,使效果更明显。

enter image description here