Last active
October 25, 2017 02:56
-
-
Save manbearwolf/bb0af76a085ec36b0edb9b7b57183fc4 to your computer and use it in GitHub Desktop.
html5 Table Classes
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
| table.dota { | |
| word-wrap: break-word; | |
| border-color: #eeeeee; | |
| border-style: dashed; | |
| padding: 1px; | |
| table-layout: fixed; | |
| border-collapse: collapse; // or seperate (dota2) (th on dota2, though) | |
| border-spacing: 0; | |
| width: 100%; | |
| display: table; | |
| table-layout: fixed; | |
| } | |
| td.dota { | |
| border-color: #eeeeee; | |
| border-style: dashed; | |
| text-align: center; | |
| vertical-align: top; | |
| border-top: dashed; | |
| border-top-color: #eeeeee; | |
| } | |
| td.dota img { // increases fancybox speed on theme (some reason) keep img blank for class spec (side note) see bottom https://gist.github.com/manbearwolf/cb0d88d8c44d2f4293b79da179f749f5 | |
| // display: block; | |
| // margin-left: auto; | |
| // margin-right: auto; | |
| height: auto; | |
| width: 100%; | |
| } |
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
| <table bgcolor="white" cellpadding="8" cellspacing="5" cols="3" class="dota"> | |
| <thead> | |
| <tr> | |
| <th style="text-align: left;">Modern Plant Stands</th> | |
| <th></th> | |
| <th></th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr> | |
| <td class="dota"> | |
| <a href="https://1.bp.blogspot.com/-hN5RAUFmiMM/WWJRhf5KykI/AAAAAAABQCI/QE4SiKdg9fQvDFto1ak3OYDJqe5TckD5wCLcBGAs/s1600/6a4f2487359c1255eab3f3c13f6ee94d.jpg"> | |
| <img src="https://1.bp.blogspot.com/-hN5RAUFmiMM/WWJRhf5KykI/AAAAAAABQCI/QE4SiKdg9fQvDFto1ak3OYDJqe5TckD5wCLcBGAs/s200/6a4f2487359c1255eab3f3c13f6ee94d.jpg" /></a> | |
| </td> |
Author
Author
div and table style design... (Simple dots) (boxes)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
div.dota {
background-color: white;
border-color: #eee;
border-style: dashed;
padding: 10px;
word-wrap: break-word; // Stupid Quora embeded
}