Tlolela ho litaba tsa mantlha Tlolela ho li-docs navigation
in English

Sehokelo se otlolohileng

Etsa hore karolo efe kapa efe ea HTML kapa karolo ea Bootstrap e tobetsoe ka ho "otlolla" sehokelo sa sehlaha ka CSS.

Eketsa .stretched-linksehokelong ho etsa hore block e nang le eona e tobehe ka karolo ea ::afterpseudo. Hangata, sena se bolela hore ntho position: relative;e nang le sehokelo le .stretched-linksehlopha e ka tobeha. Ka kopo hlokomela hore na CSS positione sebetsa joang , .stretched-linke ke ke ea tsoakoa le likarolo tse ngata tsa tafole.

Likarete li na position: relativele "Bootstrap" ka mokhoa o ikhethileng, kahoo maemong ana o ka eketsa .stretched-linksehlopha ka mokhoa o sireletsehileng sehokelong sa karete ntle le liphetoho tse ling tsa HTML.

Lihokelo tse ngata le litebello tsa lipompo ha li khothalletsoe ka lihokelo tse otlolohileng. Leha ho le joalo, tse ling positionle z-indexlitaele li ka thusa haeba sena se hlokahala.

Card image cap
Karete e nang le sehokelo se otlolohileng

Mongolo o mong o potlakileng oa ho aha holim'a sehlooho sa karete le ho etsa boholo ba litaba tsa karete.

Eya kae-kae
<div class="card" style="width: 18rem;">
  <img src="..." class="card-img-top" alt="...">
  <div class="card-body">
    <h5 class="card-title">Card with stretched link</h5>
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
    <a href="#" class="btn btn-primary stretched-link">Go somewhere</a>
  </div>
</div>

Likarolo tse ngata tsa tloaelo ha li na position: relativeka ho sa feleng, kahoo re hloka ho kenyelletsa .position-relativemona ho thibela sehokelo ho otlolla kantle ho karolo ea motsoali.

Generic placeholder image
Karolo e ikhethileng e nang le sehokelo se otlolohileng

Tsena ke litaba tsa setšoantšisi bakeng sa karolo e ikhethileng. E reretsoe ho etsisa hore na litaba tsa lefatše la 'nete li tla shebahala joang, 'me re li sebelisa mona ho fa karolo ea 'mele le boholo.

Eya kae-kae
<div class="d-flex position-relative">
  <img src="..." class="flex-shrink-0 me-3" alt="...">
  <div>
    <h5 class="mt-0">Custom component with stretched link</h5>
    <p>This is some placeholder content for the custom component. It is intended to mimic what some real-world content would look like, and we're using it here to give the component a bit of body and size.</p>
    <a href="#" class="stretched-link">Go somewhere</a>
  </div>
</div>
Generic placeholder image
Likholomo tse nang le lihokelo tse otlolohileng

Mohlala o mong oa litaba tsa setšoantšisi bakeng sa karolo ena e tloaelehileng. E reretsoe ho etsisa hore na litaba tsa lefatše la 'nete li tla shebahala joang, 'me re li sebelisa mona ho fa karolo ea 'mele le boholo.

Eya kae-kae
<div class="row g-0 bg-light position-relative">
  <div class="col-md-6 mb-md-0 p-md-4">
    <img src="..." class="w-100" alt="...">
  </div>
  <div class="col-md-6 p-4 ps-md-0">
    <h5 class="mt-0">Columns with stretched link</h5>
    <p>Another instance of placeholder content for this other custom component. It is intended to mimic what some real-world content would look like, and we're using it here to give the component a bit of body and size.</p>
    <a href="#" class="stretched-link">Go somewhere</a>
  </div>
</div>

Ho khetholla boloko bo nang le

Haeba sehokelo se otlolohileng se bonahala se sa sebetse, ho ka etsahala hore ebe sesosa se ka ba sesosa. Mehaho e latelang ea CSS e tla etsa ntho e nang le block:

  • positionBoleng ntle lestatic
  • A transformkapa perspectiveboleng ntle lenone
  • will-changeBoleng ba transformkapaperspective
  • filterBoleng ntle le kapa noneboleng will-changeba filter(e sebetsa feela ho Firefox)
Card image cap
Karete e nang le lihokelo tse otlolohileng

Mongolo o mong o potlakileng oa ho aha holim'a sehlooho sa karete le ho etsa boholo ba litaba tsa karete.

Sehokelo se otlolohileng se ke ke sa sebetsa mona, hobane position: relativese kentsoe sehokelong

Sehokelo sena se otlolohileng se tla hasana holim'a p-tag, hobane phetoho e sebelisoa ho eona.

<div class="card" style="width: 18rem;">
  <img src="..." class="card-img-top" alt="...">
  <div class="card-body">
    <h5 class="card-title">Card with stretched links</h5>
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
    <p class="card-text">
      <a href="#" class="stretched-link text-danger" style="position: relative;">Stretched link will not work here, because <code>position: relative</code> is added to the link</a>
    </p>
    <p class="card-text bg-light" style="transform: rotate(0);">
      This <a href="#" class="text-warning stretched-link">stretched link</a> will only be spread over the <code>p</code>-tag, because a transform is applied to it.
    </p>
  </div>
</div>