This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="container" style="background-color: red;"> <!-- .container背景:赤 --> | |
| <div class="row" style="background-color: green;"> <!-- .row背景:緑 --> | |
| <div class="col-sm-4" style="background-color: blue;"> <!-- .col背景1:青 --> | |
| <img src="./images/img1.jpg"> | |
| </div> | |
| <div class="col-sm-4" style="background-color: yellow;"> <!-- .col背景2:黄 --> | |
| <img src="./images/img4.jpg"> | |
| </div> | |
| <div class="col-sm-4" style="background-color: purple;"> <!-- .col背景3:紫 --> | |
| <img src="./images/img5.jpg"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 4.カードグループ | |
| **************************************************************************************************** | |
| <div class="card-group"></div>内にグループ化したいカード群を入れるだけ。 | |
| **************************************************************************************************** | |
| --> | |
| <div class="card-group mb-3"> | |
| <div class="card" style="width: 18rem"> | |
| <img src="images/img1.jpg" class="card-img-top"> | |
| <div class="card-body"> | |
| <h5 class="card-title">Card Title</h5> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 3.画像が左パターン | |
| **************************************************************************************************** | |
| Bootstrapのグリッドシステムって、container無しでも使えるんですね。 | |
| style="max-width: 540px"でカードの最大幅を指定しています。指定無しの場合は画面いっぱいに広がります。 | |
| my-autoで画像を縦方向に中央寄せしています。 | |
| **************************************************************************************************** | |
| --> | |
| <div class="card mb-3" style="max-width: 540px"> | |
| <div class="row no-gutters"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 2.画像が下パターン | |
| **************************************************************************************************** | |
| <img>を下に書いただけです。 | |
| **************************************************************************************************** | |
| --> | |
| <div class="card mb-3" style="width: 18rem"> | |
| <div class="card-body"> | |
| <h5 class="card-title">Card Title</h5> | |
| <p>ここに写真の説明などを記載します。これは例えば作品集の一部を写真で示しておいて、下のリンクから作品集ページに飛んでもらうような仕掛けを作ることができます。</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 1.画像が上パターン | |
| **************************************************************************************************** | |
| これが基本パターンです。 | |
| style="width: 18rem"で幅を指定していますが、指定無しの場合は画面いっぱいに広がります。 | |
| **************************************************************************************************** | |
| --> | |
| <div class="card my-3" style="width: 18rem"> | |
| <img src="images/img1.jpg" class="card-img-top"> | |
| <div class="card-body"> | |
| <h5 class="card-title">Card Title</h5> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <title></title> | |
| <style> | |
| </style> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <link rel="stylesheet" href="../Magnifier.js-master/magnifier.css"><!--Magnifier--> | |
| <title></title> | |
| </head> | |
| <style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
| <link rel="stylesheet" href="./style.css"> | |
| <title></title> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
| <title></title> | |
| </head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #mentaiko{ | |
| position: fixed; | |
| background:orange; | |
| } |