docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10
Build a responsive product showcase page that displays items in a grid layout that adapts to different device sizes.
Create an HTML page with a grid-based layout system that meets the following specifications:
Create a centered grid container that houses product cards. The layout should have a three-layer structure:
Display 6 product cards in the grid with the following responsive behavior:
Desktop layout (viewport ≥840px):
Tablet layout (viewport 600-839px):
Phone layout (viewport <600px):
The first product card should be a featured item with special sizing:
Implement visual tests that verify:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product Showcase</title>
<!-- CSS imports here -->
</head>
<body>
<!-- Grid structure with product cards -->
</body>
</html>Provides responsive grid layout with column-based positioning and device-specific spanning.