diff --git a/index.html b/index.html index d99c87b..f0c5367 100644 --- a/index.html +++ b/index.html @@ -582,6 +582,39 @@ function add(x, y) { <button popover="Popover on top" popover-position="top">Popover on top and on a button!</button> + +
Notice that the card width in this example have been set to 20rem, otherwise it will try to fill the current container/row where the card is.
+ ++<div class="card" style="width: 20rem;"> + <img src="https://picsum.photos/768" alt="Card example image"> + + <div class="card-body"> + <h4 class="card-title">My awesome Paper card!</h4> + <h5 class="card-subtitle">Nice looking subtitle.</h5> + <p class="card-text">Notice that the card width in this example have been set to 20rem, otherwise it will try to fill the current container/row where the card is.</p> + <button>Let me go here!</button> + </div> +</div>+