A complete pricing table extension for Bulma.
Standard pricing plans with an active state to highlight the best value.
<div class="pricing-table">
<div class="pricing-plan">
<div class="plan-header">Starter</div>
<div class="plan-price"><span class="plan-price-amount"><span class="plan-price-currency">$</span>0</span>/mo</div>
<div class="plan-items">...</div>
<div class="plan-footer"><button class="button is-fullwidth">Choose</button></div>
</div>
<!-- Highlight with is-active -->
<div class="pricing-plan is-active">...</div>
</div>
Plan items align horizontally across plans for easy feature comparison.
Use is-comparative on the table.
<div class="pricing-table is-comparative">
<div class="pricing-plan">
<div class="plan-item" data-feature="Custom Label">Feature Value</div>
</div>
</div>
Use is-horizontal to stack plans vertically (effective on desktop).
<div class="pricing-table is-horizontal">
<div class="pricing-plan">...</div>
</div>