सीएसएस संदर्भ

सीएसएस संदर्भ सीएसएस ब्राउज़र समर्थन सीएसएस चयनकर्ता सीएसएस कार्य सीएसएस संदर्भ कर्ण सीएसएस वेब सुरक्षित फ़ॉन्ट्स सीएसएस फ़ॉलबैक फ़ॉन्ट्स सीएसएस एनिमेटेबल सीएसएस इकाइयां सीएसएस पीएक्स-ईएम कनवर्टर सीएसएस रंग सीएसएस रंग मान सीएसएस डिफ़ॉल्ट मान सीएसएस इकाइयां

CSS Properties

align-content align-items align-self all animation animation-delay animation-direction animation-duration animation-fill-mode animation-iteration-count animation-name animation-play-state animation-timing-function backface-visibility background background-attachment background-blend-mode background-clip background-color background-image background-origin background-position background-repeat background-size border border-bottom border-bottom-color border-bottom-left-radius border-bottom-right-radius border-bottom-style border-bottom-width border-collapse border-color border-image border-image-outset border-image-repeat border-image-slice border-image-source border-image-width border-left border-left-color border-left-style border-left-width border-radius border-right border-right-color border-right-style border-right-width border-spacing border-style border-top border-top-color border-top-left-radius border-top-right-radius border-top-style border-top-width border-width bottom box-decoration-break box-shadow box-sizing break-after break-before break-inside caption-side caret-color @charset clear clip clip-path color column-count column-fill column-gap column-rule column-rule-color column-rule-style column-rule-width column-span column-width columns content counter-increment counter-reset cursor direction display empty-cells filter flex flex-basis flex-direction flex-flow flex-grow flex-shrink flex-wrap float font @font-face font-family font-feature-settings font-kerning font-size font-size-adjust font-stretch font-style font-variant font-variant-caps font-weight gap grid grid-area grid-auto-columns grid-auto-flow grid-auto-rows grid-column grid-column-end grid-column-gap grid-column-start grid-gap grid-row grid-row-end grid-row-gap grid-row-start grid-template grid-template-areas grid-template-columns grid-template-rows hanging-punctuation height hyphens image-rendering @import isolation justify-content @keyframes left letter-spacing line-height list-style list-style-image list-style-position list-style-type margin margin-bottom margin-left margin-right margin-top mask-image mask-mode mask-origin mask-position mask-repeat mask-size max-height max-width @media min-height min-width mix-blend-mode object-fit object-position opacity order orphans outline outline-color outline-offset outline-style outline-width overflow overflow-wrap overflow-x overflow-y padding padding-bottom padding-left padding-right padding-top page-break-after page-break-before page-break-inside perspective perspective-origin pointer-events position quotes resize right row-gap scroll-behavior tab-size table-layout text-align text-align-last text-decoration text-decoration-color text-decoration-line text-decoration-style text-indent text-justify text-overflow text-shadow text-transform top transform transform-origin transform-style transition transition-delay transition-duration transition-property transition-timing-function unicode-bidi user-select vertical-align visibility white-space widows width word-break word-spacing word-wrap writing-mode z-index



CSS ग्रिड-क्षेत्र संपत्ति


उदाहरण

पंक्ति 2 कॉलम 1 पर "आइटम 1" शुरू करें, और 2 पंक्तियों और 3 कॉलमों को फैलाएं:

.item1 {
  grid-area: 2 / 1 / span 2 / span 3;
}

नीचे और अधिक "इसे स्वयं आज़माएं" उदाहरण।


परिभाषा और उपयोग

grid-areaगुण ग्रिड लेआउट में ग्रिड आइटम के आकार और स्थान को निर्दिष्ट करता है, और निम्नलिखित गुणों के लिए एक शॉर्टहैंड गुण है :

grid-areaसंपत्ति का उपयोग ग्रिड आइटम को नाम निर्दिष्ट करने के लिए भी किया जा सकता है नामित ग्रिड आइटम को ग्रिड कंटेनर की ग्रिड-टेम्पलेट-क्षेत्र संपत्ति द्वारा संदर्भित किया जा सकता है । नीचे उदाहरण देखें।

डिफ़ॉल्ट मान: कार / कार / कार / कार
विरासत में मिला: नहीं
एनिमेटेबल: हां। एनिमेटेबल के बारे में पढ़ें
संस्करण: CSS ग्रिड लेआउट मॉड्यूल स्तर 1
जावास्क्रिप्ट सिंटैक्स: वस्तु .style.gridArea="1/2 / अवधि 2 / अवधि 3"

ब्राउज़र समर्थन

तालिका में संख्याएं पहले ब्राउज़र संस्करण को निर्दिष्ट करती हैं जो पूरी तरह से संपत्ति का समर्थन करता है।

Property
grid-area 57 16 52 10 44


सीएसएस सिंटेक्स

grid-area: grid-row-start / grid-column-start / grid-row-end / grid-column-end | itemname;

सम्पत्ति की कीमत

Value Description
grid-row-start Specifies on which row to start displaying the item.
grid-column-start Specifies on which column to start displaying the item.
grid-row-end Specifies on which row-line to stop displaying the item, or how many rows to span.
grid-column-end Specifies on which column-line to stop displaying the item, or how many columns to span.
itemname Specifies a name for the grid item

और ज्यादा उदाहरण

उदाहरण

Item1 को "myArea" नाम मिलता है, और पांच कॉलम ग्रिड लेआउट में सभी पांच कॉलम फैलाता है:

.item1 {
  grid-area: myArea;
}
.grid-container {
  display: grid;
  grid-template-areas: 'myArea myArea myArea myArea myArea';
}

उदाहरण

"माईएरिया" को पांच कॉलम ग्रिड लेआउट में दो कॉलम फैलाने दें (अवधि के संकेत बिना नाम वाले आइटम का प्रतिनिधित्व करते हैं):

.item1 {
  grid-area: myArea;
}
.grid-container {
  display: grid;
  grid-template-areas: 'myArea myArea . . .';
}

उदाहरण

"आइटम 1" को दो कॉलम और दो पंक्तियों में बनाएं:

.grid-container {
  grid-template-areas: 'myArea myArea . . .' 'myArea myArea . . .';
}

उदाहरण

सभी मदों को नाम दें, और एक उपयोग के लिए तैयार वेबपेज टेम्पलेट बनाएं:

.item1 { grid-area: header; }
.item2 { grid-area: menu; }
.item3 { grid-area: main; }
.item4 { grid-area: right; }
.item5 { grid-area: footer; }

.grid-container {
  grid-template-areas:
    'header header header header header header'
    'menu main main main right right'
    'menu footer footer footer footer footer';
}

संबंधित पृष्ठ

सीएसएस ट्यूटोरियल: सीएसएस ग्रिड लेआउट