Menu
  1. Home 1
  2. Home 2
  3. Home 3
  4. Home 4
  5. Home 5
  6. Home 6
  7. World

    World news

    • All
    • Health
    • Tech
    • Travel
    • World
    More
      Previous Next

      No content

      A problem occurred while loading content.

    1. Life Style

      Life Style

      • All
      • Arts
      • Health
      • Music
      • Travel
      More
        Previous Next

        No content

        A problem occurred while loading content.

      1. Fashion

        Fashion

        • All
        • Fashion
        More
          Previous Next

          No content

          A problem occurred while loading content.

        1. Sport
          Previous Next

          No content

          A problem occurred while loading content.

        2. Events/Calendar
        3. Features
        Social Links Search User Login Menu
        Tools
        Close
        Close

        Text

        Documentation and examples for common text utilities to control alignment, wrapping, weight, and more.

        Text alignment

        Ambitioni dedisse scripsisse iudicaretur. Cras mattis iudicium purus sit amet fermentum. Donec sed odio operae, eu vulputate felis rhoncus. Praeterea iter est quasdam res quas ex communi. At nos hinc posthac, sitientis piros Afros. Petierunt uti sibi concilium totius Galliae in diem certam indicere. Cras mattis iudicium purus sit amet fermentum.

        <p class="text-justify">Ambitioni dedisse scripsisse iudicaretur. Cras mattis iudicium purus sit amet fermentum. Donec sed odio operae, eu vulputate felis rhoncus. Praeterea iter est quasdam res quas ex communi. At nos hinc posthac, sitientis piros Afros. Petierunt uti sibi concilium totius Galliae in diem certam indicere. Cras mattis iudicium purus sit amet fermentum.</p>

        For left, right, and center alignment, responsive classes are available that use the same viewport width breakpoints as the grid system.

        Left aligned text on all viewport sizes.

        Center aligned text on all viewport sizes.

        Right aligned text on all viewport sizes.

        Left aligned text on viewports sized SM (small) or wider.

        Left aligned text on viewports sized MD (medium) or wider.

        Left aligned text on viewports sized LG (large) or wider.

        Left aligned text on viewports sized XL (extra-large) or wider.

        <p class="text-left">Left aligned text on all viewport sizes.</p>
        <p class="text-center">Center aligned text on all viewport sizes.</p>
        <p class="text-right">Right aligned text on all viewport sizes.</p>
        <p class="text-sm-left">Left aligned text on viewports sized SM (small) or wider.</p>
        <p class="text-md-left">Left aligned text on viewports sized MD (medium) or wider.</p>
        <p class="text-lg-left">Left aligned text on viewports sized LG (large) or wider.</p>
        <p class="text-xl-left">Left aligned text on viewports sized XL (extra-large) or wider.</p>

        Text wrapping and overflow

        Prevent text from wrapping with a .text-nowrap class.

        Curabitur blandit tempus ardua ridiculus sed magna.
        <div class="row">
        	<div class="col-1 text-nowrap">
        		Curabitur blandit tempus ardua ridiculus sed magna.
        	</div>
        	<div class="col-11">
        		<img  src="/portals/0/..." alt="An image to show the text doesn't wrap">
        	</div>
        </div>

        For longer content, you can add a .text-truncate class to truncate the text with an ellipsis. Requires display: inline-block or display: block.

        Praeterea iter est quasdam res quas ex communi.
        Praeterea iter est quasdam res quas ex communi.
        <!-- Block level -->
        <div class="row">
        	<div class="col-2 text-truncate">
        		Praeterea iter est quasdam res quas ex communi.
        	</div>
        </div>
        <!-- Inline level -->
        <span class="d-inline-block text-truncate" style="max-width: 150px;">Praeterea iter est quasdam res quas ex communi.</span>

        Text transform

        Transform text in components with text capitalization classes.

        Lowercased text.

        Uppercased text.

        CapiTaliZed text.

        <p class="text-lowercase">Lowercased text.</p>
        <p class="text-uppercase">Uppercased text.</p>
        <p class="text-capitalize">CapiTaliZed text.</p>

        Note how text-capitalize only changes the first letter of each word, leaving the case of any other letters unaffected.

        Font weight and italics

        Quickly change the weight (boldness) of text or italicize text.

        Bold text.

        Normal weight text.

        Light weight text.

        Italic text.

        <p class="font-weight-bold">Bold text.</p>
        <p class="font-weight-normal">Normal weight text.</p>
        <p class="font-weight-light">Light weight text.</p>
        <p class="font-italic">Italic text.</p>
        Back To Top