Created
July 20, 2013 05:50
-
-
Save spsaucier/6044020 to your computer and use it in GitHub Desktop.
Table to Divs - HTML
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 class="productTable "> | |
| <tbody> | |
| <tr> | |
| <td class="productItem"> | |
| <div class="product_item"> | |
| Product 1 | |
| </div> | |
| </td> | |
| <td class="productItem"> | |
| <div class="product_item"> | |
| Product 2 | |
| </div> | |
| </td> | |
| </tr> | |
| </tbody> | |
| </table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment