Budget Planner
<div class="budget_planner_card_card">
<div class="pricing-card">
<div class="pricing-badge">Most Popular</div>
<div class="pricing-header">
<h3 class="plan-name">Professional</h3>
<div class="price-display">
<span class="currency">$</span>
<span class="price">29</span>
<span class="period">/month</span>
</div>
</div>
<div class="pricing-features">
<div class="feature-item">
<svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
<path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
</svg>
<span>Unlimited Projects</span>
</div>
<div class="feature-item">
<svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
<path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
</svg>
<span>Priority Support</span>
</div>
<div class="feature-item">
<svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
<path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
</svg>
<span>Advanced Analytics</span>
</div>
</div>
<button class="pricing-button">Get Started</button>
</div>
</div>About Budget Planner
Budget Planner is a card built with gradient fills, transforms and layered shadows. Its stylesheet runs to 92 lines across 15 rules, declaring 27 distinct properties. It styles hover state explicitly, so the component responds to interaction rather than sitting still. Every format shown on this page is the same component, so you can take HTML, CSS and Tailwind depending on how your project is set up. Nothing is minified and nothing depends on a framework.
When to use
- Repeated use across a page, since there is no animation to become tiring when several appear together
- Places where one control is meant to be memorable, since 92 lines of CSS is a real investment for a single element
How it works
The base rule sets the shape with border-radius, display, height and margin. The fill is a gradient rather than a flat colour, so it is a single background declaration with no image to load. Movement is done with transforms rather than by changing position or size, which is what keeps it smooth: transforms are composited and do not force the browser to lay the page out again. State changes are eased with a transition, so hovering does not snap.
Accessibility
Built on a native <button> element, so keyboard focus and screen reader semantics work without extra attributes. No focus style is defined. Add one before shipping, or keyboard users lose track of position. That is one thing to fix before this ships in front of users.
Browser support
Everything this component uses has been supported across browsers for years, so no fallback is needed.
Related components
Frequently asked questions
Budget Planner
Budget Planner
Financial planning
Category Breakdown
Spending Trend
Upcoming Bills
<div class="budget_planner_card_card">
<div class="pricing-card">
<div class="pricing-badge">Most Popular</div>
<div class="pricing-header">
<h3 class="plan-name">Professional</h3>
<div class="price-display">
<span class="currency">$</span>
<span class="price">29</span>
<span class="period">/month</span>
</div>
</div>
<div class="pricing-features">
<div class="feature-item">
<svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
<path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
</svg>
<span>Unlimited Projects</span>
</div>
<div class="feature-item">
<svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
<path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
</svg>
<span>Priority Support</span>
</div>
<div class="feature-item">
<svg class="check-icon" viewBox="0 0 20 20" fill="currentColor">
<path d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z"/>
</svg>
<span>Advanced Analytics</span>
</div>
</div>
<button class="pricing-button">Get Started</button>
</div>
</div>What is inside Budget Planner
Budget Planner is a CSS button built with gradient fills, transforms, layered shadows, defined in 92 lines across 15 selectors.
Techniques used
CSS properties in this component
align-itemsbackgroundborderborder-colorborder-radiusbox-shadowcolorcursordisplayflex-shrinkfont-familyfont-sizefont-weightgapheightjustify-contentleftmarginmargin-bottommax-widthpaddingpositiontext-aligntoptransformtransitionwidthAccessibility check1 to fix
- Built on a native <button> element, so keyboard focus and screen reader semantics work without extra attributes.
- No focus style is defined. Add one before shipping, or keyboard users lose track of position.
These notes are generated by reading this component's own source, so they describe what it actually does rather than what a template says. Copy the code above in HTML, CSS, Tailwind and adapt it freely.