Skip to content

Instantly share code, notes, and snippets.

@xiuzhong
Last active September 10, 2019 04:52
Show Gist options
  • Select an option

  • Save xiuzhong/9c0e05b687d496c6a5680e446bc9caf6 to your computer and use it in GitHub Desktop.

Select an option

Save xiuzhong/9c0e05b687d496c6a5680e446bc9caf6 to your computer and use it in GitHub Desktop.
Vertical stripes
/**
* Vertical stripes
*/
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
.tdb {
padding: 4px;
background-clip: content-box;
}
<!-- content to be placed inside <body>…</body> -->
<table border=1>
<tr>
<td class="tdb" width=1000px style="background: linear-gradient(to right, #0adb50 0, #d0f4dc 60%, white 60%);"> 40% </td>
<td witdh=100px> 60% </td>
</tr>
<tr>
<td class="tdb" width=1000px> 60% </td>
<td witdh=100px> 40% </td>
</tr>
</table>
// alert('Hello world!');
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment