Created
July 28, 2014 14:55
-
-
Save tamarazuk/e2736bf6bc590077a859 to your computer and use it in GitHub Desktop.
Measurement Price Calculator Pricing Table Styling
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
.wc-measurement-price-calculator-pricing-table thead th { | |
text-align: center; | |
} |
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="wc-measurement-price-calculator-pricing-table"> | |
<thead> | |
<tr> | |
<th>Range (<span class="units">sq m</span>)</th> | |
<th>Price (<span class="units">€/sq m</span>)</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>0 - 4.99 sq m</td> | |
<td><span class="amount">€13.23</span> sq m</td> | |
</tr> | |
<tr> | |
<td>5 - 12.49 sq m</td> | |
<td><span class="amount">€12.31</span> sq m</td> | |
</tr> | |
<tr> | |
<td>12.50+ sq m</td> | |
<td><span class="amount">€11.50</span> sq m</td> | |
</tr> | |
</tbody> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment