CSS கட்டம் லேஅவுட் ஜெனரேட்டர்
நேரடி முன்னோட்டத்துடன் CSS கிரிட் தளவமைப்புகளை பார்வைக்கு உருவாக்கவும். கட்டம்-டெம்ப்ளேட்-நெடுவரிசைகள், வரிசைகள், இடைவெளி, நியாயப்படுத்துதல்-உருப்படிகள், சீரமைத்தல்-உருப்படிகள் மற்றும் பலவற்றை - இலவசம் மற்றும் கிளையன்ட் பக்கத்தைச் சரிசெய்யவும்.
.container {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
column-gap: 12px;
row-gap: 12px;
justify-items: stretch;
align-items: stretch;
}
.item {
padding: 1rem;
border-radius: 8px;
font-weight: 600;
font-size: 0.9rem;
text-align: center;
min-height: 60px;
display: flex;
align-items: center;
justify-content: center;
}