0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

bootstrap4 card 行間・高さ・位置調整し、ぬるっと拡大する

Last updated at Posted at 2020-05-05

bootstrap4 card 行間・位置調整し、ぬるっと拡大する

※個人作業レベルのメモです
※公式ドキュメントは以下
 https://cccabinet.jpn.org/bootstrap4/components/card

・完成状態
スクリーンショット 2020-05-06 0.48.52.png

・拡大後
スクリーンショット 2020-05-06 0.49.02.png

・要素の真ん中に表示する
 divタグのclassに「mx-auto」を指定する

・行間調整する
 pタグに「style="line-height:XXrem"」を指定する

・高さ調整する
 pタグに「style="height:Xrem;"」を指定する
 img、タグのclassに「height:XXrem;」を指定する
 ※各要素で高さが決まっている為、各要素のstyleに指定すれば調整可能

qiita.html
  <div class="mx-auto" style="width: 20rem; height:25rem;">
    <div class="card zoom">
      <img class="card-img-top" src="XXX" alt="XXX" style="width: 20rem; height: 12rem;">
      <div class="card-body">
        <h4 class="card-title">TEST</h4>
        <p class="card-text" style="line-height:1.5rem;text-align:left;height:6rem;">
          TEST</br>
        </p>
        <a href="XXX"class="btn btn-secondary btn-sm">Demo</a></p>
      </div>  
    </div>
  </div>

・ぬるっと拡大する
以下コードをcssに記載し、
上記htmlのclassに指定する。

qiita.css

    .zoom {
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease;
    }
    .zoom:hover {
      cursor: pointer;
      transform: scale(1.1, 1.1);
      box-shadow: 0 0 20px black;
    }

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?