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;
}