# Stretched link

the stretched link is well explained in Bootstrap Documentation, you can see the full detail of this helper here (opens new window)

To simply understand, it is useful to let a link or anything clickable stretched within its parent container for better UX.

# format

stretched-link

  • require: an upper parent container with not position: static

# Example

Title

Content

Something clickable
<div class="card" style="position: relative">
  <h3>Title</h3>
  <p>Content</p>
  <a href="#" class="stretched-link">Something clickable</a>
</div>