Pricing Grid
CSS
Easy
2 views
Problem Description
Create a pricing section with three cards in a grid.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use grid and equal card height feel.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
<style>
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 760px; }
.card { border: 1px solid #eee; border-radius: 14px; padding: 14px; }
.price { font-size: 28px; font-weight: 700; }
</style>
</head>
<body>
<div class='grid'>
<div class='card'><h2>Free</h2><div class='price'>0</div></div>
<div class='card'><h2>Pro</h2><div class='price'>199</div></div>
<div class='card'><h2>Team</h2><div class='price'>499</div></div>
</div>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!