मुख्य विषयवस्तु में जाएं डॉक्स नेविगेशन पर जाएं
Check
in English

मूलपाठ

संरेखण, रैपिंग, वज़न आदि को नियंत्रित करने के लिए सामान्य टेक्स्ट उपयोगिताओं के लिए दस्तावेज़ीकरण और उदाहरण।

पाठ्य संरेखण

टेक्स्ट अलाइनमेंट क्लासेस वाले कंपोनेंट्स के लिए टेक्स्ट को आसानी से री-अलाइन करें। प्रारंभ, अंत और केंद्र संरेखण के लिए, उत्तरदायी वर्ग उपलब्ध हैं जो ग्रिड सिस्टम के समान व्यूपोर्ट चौड़ाई ब्रेकप्वाइंट का उपयोग करते हैं।

सभी व्यूपोर्ट आकारों पर संरेखित टेक्स्ट प्रारंभ करें।

सभी व्यूपोर्ट आकारों पर मध्य संरेखित टेक्स्ट।

सभी व्यूपोर्ट आकारों पर संरेखित टेक्स्ट समाप्त करें।

व्यूपोर्ट आकार SM (छोटा) या चौड़ा पर संरेखित टेक्स्ट प्रारंभ करें।

व्यूपोर्ट आकार के एमडी (मध्यम) या व्यापक पर संरेखित टेक्स्ट प्रारंभ करें।

व्यूपोर्ट्स आकार LG (बड़ा) या चौड़ा पर संरेखित टेक्स्ट प्रारंभ करें।

व्यूपोर्ट आकार XL (अतिरिक्त-बड़ा) या चौड़ा पर संरेखित टेक्स्ट प्रारंभ करें।

एचटीएमएल
<p class="text-start">Start aligned text on all viewport sizes.</p>
<p class="text-center">Center aligned text on all viewport sizes.</p>
<p class="text-end">End aligned text on all viewport sizes.</p>

<p class="text-sm-start">Start aligned text on viewports sized SM (small) or wider.</p>
<p class="text-md-start">Start aligned text on viewports sized MD (medium) or wider.</p>
<p class="text-lg-start">Start aligned text on viewports sized LG (large) or wider.</p>
<p class="text-xl-start">Start aligned text on viewports sized XL (extra-large) or wider.</p>
ध्यान दें कि हम उचित पाठ के लिए उपयोगिता वर्ग प्रदान नहीं करते हैं। हालांकि, सौंदर्य की दृष्टि से, उचित पाठ अधिक आकर्षक लग सकता है, यह शब्द-अंतर को अधिक यादृच्छिक बनाता है और इसलिए पढ़ने में कठिन होता है।

टेक्स्ट रैपिंग और ओवरफ्लो

.text-wrapएक वर्ग के साथ पाठ लपेटें ।

यह पाठ लपेटना चाहिए।
एचटीएमएल
<div class="badge bg-primary text-wrap" style="width: 6rem;">
  This text should wrap.
</div>

.text-nowrapपाठ को कक्षा के साथ लपेटने से रोकें ।

यह पाठ माता-पिता को अतिप्रवाह करना चाहिए।
एचटीएमएल
<div class="text-nowrap bg-light border" style="width: 8rem;">
  This text should overflow the parent.
</div>

शब्द विराम

.text-breakसेट word-wrap: break-wordऔर का उपयोग करके टेक्स्ट की लंबी स्ट्रिंग्स को अपने घटकों के लेआउट को तोड़ने से रोकें word-break: break-word। हम व्यापक ब्राउज़र समर्थन word-wrapके लिए अधिक सामान्य के बजाय उपयोग करते हैं, और फ्लेक्स कंटेनरों के साथ समस्याओं से बचने के लिए बहिष्कृत जोड़ते हैं।overflow-wrapword-break: break-word

एमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएमएम

एचटीएमएल
<p class="text-break">mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm</p>
ध्यान दें कि अरबी में शब्दों को तोड़ना संभव नहीं है , जो कि सबसे अधिक इस्तेमाल की जाने वाली आरटीएल भाषा है। इसलिए .text-breakहमारे RTL संकलित CSS से हटा दिया गया है।

टेक्स्ट ट्रांसफॉर्म

टेक्स्ट कैपिटलाइज़ेशन क्लासेस वाले कंपोनेंट्स में टेक्स्ट ट्रांसफ़ॉर्म करें।

लोअरकेस टेक्स्ट।

अपरकेस टेक्स्ट।

CapiTaliZed पाठ।

एचटीएमएल
<p class="text-lowercase">Lowercased text.</p>
<p class="text-uppercase">Uppercased text.</p>
<p class="text-capitalize">CapiTaliZed text.</p>

ध्यान दें कि कैसे .text-capitalizeकेवल प्रत्येक शब्द के पहले अक्षर को बदलता है, किसी अन्य अक्षर के मामले को अप्रभावित छोड़ देता है।

फ़ॉन्ट आकार

font-sizeपाठ का त्वरित रूप से परिवर्तन करें। जबकि हमारे शीर्षक वर्ग (जैसे, .h1- .h6) लागू होते हैं font-size, font-weight, और line-height, ये उपयोगिताएँ केवल लागू होती हैं font-size। इन उपयोगिताओं का आकार HTML के शीर्षक तत्वों से मेल खाता है, इसलिए जैसे-जैसे संख्या बढ़ती है, उनका आकार घटता जाता है।

.fs-1 पाठ

.fs-2 पाठ

.fs-3 पाठ

.fs-4 पाठ

.fs-5 पाठ

.fs-6 पाठ

एचटीएमएल
<p class="fs-1">.fs-1 text</p>
<p class="fs-2">.fs-2 text</p>
<p class="fs-3">.fs-3 text</p>
<p class="fs-4">.fs-4 text</p>
<p class="fs-5">.fs-5 text</p>
<p class="fs-6">.fs-6 text</p>

Sass मानचित्र font-sizeको संशोधित करके अपने उपलब्ध s को अनुकूलित करें ।$font-sizes

फ़ॉन्ट वजन और इटैलिक

इन उपयोगिताओं के साथ टेक्स्ट font-weightया टेक्स्ट को तुरंत बदलें । उपयोगिताओं को संक्षिप्त किया जाता है और उपयोगिताओं को संक्षिप्त किया जाता है ।font-stylefont-style.fst-*font-weight.fw-*

बोल्ड अक्षर।

बोल्ड वेट टेक्स्ट (मूल तत्व के सापेक्ष)।

सेमीबोल्ड वेट टेक्स्ट।

सामान्य वजन पाठ।

हल्के वजन का पाठ।

हल्का वजन पाठ (मूल तत्व के सापेक्ष)।

इटैलिक पाठ।

सामान्य फ़ॉन्ट शैली के साथ पाठ

एचटीएमएल
<p class="fw-bold">Bold text.</p>
<p class="fw-bolder">Bolder weight text (relative to the parent element).</p>
<p class="fw-semibold">Semibold weight text.</p>
<p class="fw-normal">Normal weight text.</p>
<p class="fw-light">Light weight text.</p>
<p class="fw-lighter">Lighter weight text (relative to the parent element).</p>
<p class="fst-italic">Italic text.</p>
<p class="fst-normal">Text with normal font style</p>

ऊंची लाईन

.lh-*उपयोगिताओं के साथ लाइन की ऊंचाई बदलें ।

यह दिखाने के लिए लिखा गया एक लंबा पैराग्राफ है कि किसी तत्व की रेखा-ऊंचाई हमारी उपयोगिताओं से कैसे प्रभावित होती है। कक्षाएं स्वयं तत्व या कभी-कभी मूल तत्व पर लागू होती हैं। इन वर्गों को हमारी उपयोगिता एपीआई के साथ आवश्यकतानुसार अनुकूलित किया जा सकता है।

यह दिखाने के लिए लिखा गया एक लंबा पैराग्राफ है कि किसी तत्व की रेखा-ऊंचाई हमारी उपयोगिताओं से कैसे प्रभावित होती है। कक्षाएं स्वयं तत्व या कभी-कभी मूल तत्व पर लागू होती हैं। इन वर्गों को हमारी उपयोगिता एपीआई के साथ आवश्यकतानुसार अनुकूलित किया जा सकता है।

यह दिखाने के लिए लिखा गया एक लंबा पैराग्राफ है कि किसी तत्व की रेखा-ऊंचाई हमारी उपयोगिताओं से कैसे प्रभावित होती है। कक्षाएं स्वयं तत्व या कभी-कभी मूल तत्व पर लागू होती हैं। इन वर्गों को हमारी उपयोगिता एपीआई के साथ आवश्यकतानुसार अनुकूलित किया जा सकता है।

यह दिखाने के लिए लिखा गया एक लंबा पैराग्राफ है कि किसी तत्व की रेखा-ऊंचाई हमारी उपयोगिताओं से कैसे प्रभावित होती है। कक्षाएं स्वयं तत्व या कभी-कभी मूल तत्व पर लागू होती हैं। इन वर्गों को हमारी उपयोगिता एपीआई के साथ आवश्यकतानुसार अनुकूलित किया जा सकता है।

एचटीएमएल
<p class="lh-1">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>
<p class="lh-sm">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>
<p class="lh-base">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>
<p class="lh-lg">This is a long paragraph written to show how the line-height of an element is affected by our utilities. Classes are applied to the element itself or sometimes the parent element. These classes can be customized as needed with our utility API.</p>

एकलस्पेस

हमारे मोनोस्पेस फ़ॉन्ट स्टैक के साथ चयन को बदलें .font-monospace

यह मोनोस्पेस में है

एचटीएमएल
<p class="font-monospace">This is in monospace</p>

रंग रीसेट करें

किसी टेक्स्ट या लिंक के रंग को के साथ रीसेट करें .text-reset, ताकि वह अपने माता-पिता से रंग प्राप्त कर सके।

रीसेट लिंक के साथ म्यूट किया गया टेक्स्ट .

एचटीएमएल
<p class="text-muted">
  Muted text with a <a href="#" class="text-reset">reset link</a>.
</p>

पाठ सजावट

टेक्स्ट डेकोरेशन क्लासेस वाले कंपोनेंट्स में टेक्स्ट को सजाएं।

इस पाठ के नीचे एक रेखा है।

इस पाठ में इसके माध्यम से जाने वाली एक रेखा है।

इस लिंक का टेक्स्ट डेकोरेशन हटा दिया गया है
एचटीएमएल
<p class="text-decoration-underline">This text has a line underneath it.</p>
<p class="text-decoration-line-through">This text has a line going through it.</p>
<a href="#" class="text-decoration-none">This link has its text decoration removed</a>

सास

चर

// stylelint-disable value-keyword-case
$font-family-sans-serif:      system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
$font-family-monospace:       SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
// stylelint-enable value-keyword-case
$font-family-base:            var(--#{$prefix}font-sans-serif);
$font-family-code:            var(--#{$prefix}font-monospace);

// $font-size-root affects the value of `rem`, which is used for as well font sizes, paddings, and margins
// $font-size-base affects the font size of the body text
$font-size-root:              null;
$font-size-base:              1rem; // Assumes the browser default, typically `16px`
$font-size-sm:                $font-size-base * .875;
$font-size-lg:                $font-size-base * 1.25;

$font-weight-lighter:         lighter;
$font-weight-light:           300;
$font-weight-normal:          400;
$font-weight-semibold:        600;
$font-weight-bold:            700;
$font-weight-bolder:          bolder;

$font-weight-base:            $font-weight-normal;

$line-height-base:            1.5;
$line-height-sm:              1.25;
$line-height-lg:              2;

$h1-font-size:                $font-size-base * 2.5;
$h2-font-size:                $font-size-base * 2;
$h3-font-size:                $font-size-base * 1.75;
$h4-font-size:                $font-size-base * 1.5;
$h5-font-size:                $font-size-base * 1.25;
$h6-font-size:                $font-size-base;

एमएपीएस

हमारी उपयोगिताओं एपीआई के संयोजन में, इस मानचित्र से फ़ॉन्ट-आकार की उपयोगिताओं को उत्पन्न किया जाता है।

$font-sizes: (
  1: $h1-font-size,
  2: $h2-font-size,
  3: $h3-font-size,
  4: $h4-font-size,
  5: $h5-font-size,
  6: $h6-font-size
);

यूटिलिटीज एपीआई

फॉन्ट और टेक्स्ट यूटिलिटीज हमारी यूटिलिटीज एपीआई में scss/_utilities.scss. उपयोगिताओं API का उपयोग करना सीखें।

    "font-family": (
      property: font-family,
      class: font,
      values: (monospace: var(--#{$prefix}font-monospace))
    ),
    "font-size": (
      rfs: true,
      property: font-size,
      class: fs,
      values: $font-sizes
    ),
    "font-style": (
      property: font-style,
      class: fst,
      values: italic normal
    ),
    "font-weight": (
      property: font-weight,
      class: fw,
      values: (
        light: $font-weight-light,
        lighter: $font-weight-lighter,
        normal: $font-weight-normal,
        bold: $font-weight-bold,
        semibold: $font-weight-semibold,
        bolder: $font-weight-bolder
      )
    ),
    "line-height": (
      property: line-height,
      class: lh,
      values: (
        1: 1,
        sm: $line-height-sm,
        base: $line-height-base,
        lg: $line-height-lg,
      )
    ),
    "text-align": (
      responsive: true,
      property: text-align,
      class: text,
      values: (
        start: left,
        end: right,
        center: center,
      )
    ),
    "text-decoration": (
      property: text-decoration,
      values: none underline line-through
    ),
    "text-transform": (
      property: text-transform,
      class: text,
      values: lowercase uppercase capitalize
    ),
    "white-space": (
      property: white-space,
      class: text,
      values: (
        wrap: normal,
        nowrap: nowrap,
      )
    ),
    "word-wrap": (
      property: word-wrap word-break,
      class: text,
      values: (break: break-word),
      rtl: false
    ),