<div class="plan-selector">
<label class="plan-card">
<input type="radio" name="plan" checked>
<div class="plan-content">
<span class="plan-title">Standard</span>
<span class="plan-cost">Free</span>
</div>
</label>
<label class="plan-card">
<input type="radio" name="plan">
<div class="plan-content">
<span class="plan-title">Pro</span>
<span class="plan-cost">$19/mo</span>
</div>
</label>
<label class="plan-card">
<input type="radio" name="plan">
<div class="plan-content">
<span class="plan-title">Business</span>
<span class="plan-cost">$49/mo</span>
</div>
</label>
</div>
Back to Snippets
Radio Selection Cards CSS
Replace boring radio buttons with these selectable cards. Perfect for pricing plans or shipping options, these cards use a hidden input to remain fully functional forms while offering a much better visual experience.
284