Last active
November 23, 2017 17:51
-
-
Save cossssmin/58ea1d70b1289a6997eb48533caf4ae7 to your computer and use it in GitHub Desktop.
Pine .col Class Example
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 align="center" cellpadding="0" cellspacing="0" role="presentation" width="100%"> | |
<tr> | |
<td class="spacer" height="30" style="line-height: 30px;"> </td> | |
</tr> | |
<tr> | |
<td style="padding: 0 20px;"> | |
<table cellpadding="0" cellspacing="0" role="presentation" width="100%"> | |
<tr> | |
<td class="col" width="310" style="padding: 0 10px;"> | |
<h2 style="font-weight: 500; margin: 0;">First column</h2> | |
<p style="color: #999999; font-size: 12px; font-weight: 400; margin: 0;">Full width on mobile</p> | |
<p>These columns use the required <code>.col</code> class.</p> | |
</td> | |
<td class="col" width="310" style="padding: 0 10px;"> | |
<h2 style="font-weight: 500; margin: 0;">Second column</h2> | |
<p style="color: #999999; font-size: 12px; font-weight: 400; margin: 0;">Also full width on mobile</p> | |
<p>On mobile, this makes them 100% wide, so they stack.</p> | |
</td> | |
</tr> | |
</table> | |
</td> | |
</tr> | |
<tr> | |
<td class="spacer" height="30" style="line-height: 30px;"> </td> | |
</tr> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment