Created
March 17, 2021 20:29
-
-
Save theothermattm/3fe94baf793edebff97eb0031e28094c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/charts.css/dist/charts.min.css"> | |
<body > | |
<h1> | |
Are charts awesome? </h1> | |
<table class="charts-css [ column ] [ show-primary-axis show-4-secondary-axes ] [ data-spacing-4 reverse-data ]"> | |
<caption>Are charts awesome?</caption> | |
<thead> | |
<tr> | |
<th scope="col"> Yes </th> | |
<th scope="col"> No </th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<th scope="row"> Yes </th> | |
<td style="--size: calc( 100 / 100 );"> Yes </td> | |
</tr> | |
<tr> | |
<th scope="row"> No </th> | |
<td style="--size: calc( 1 / 100 );"> No </td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment