Why does my grid content not align properly when I add col-span-2?
The col-span-2 makes the content span two columns, so it takes more horizontal space. If the grid container or columns are not wide enough, it may look cramped or overflow. Check the container width and grid column setup as in render_step 5.
💡 Remember: col-span-2 stretches the item across two columns, so the grid must have enough space.
Why is the footer not sticking to the bottom of the page?
The footer appears after the main content naturally. If the page content is short, the footer will be just below content, not at the viewport bottom. To fix, use min-height on container or flex layout for full height. See render_step 6 for footer placement.
💡 Footer follows content flow; to stick bottom, page height must fill viewport.
Why does the container not center on small screens?
The container class sets max-width and centers with margin auto, but on very small screens, the container width shrinks to fit. This is expected for responsiveness. See render_step 1 for container behavior.
💡 Container centers but shrinks on small screens to fit viewport.