コンテンツをダウンロードして編集してウェブサイトを作成する方法を学んでいます。ウェブサイトのセクションにすべてのボタンを表示してスタイルを設定する
ホームページにショップのすべての店舗の画像を示すセクションを作成しました。ホームページに3店舗の画像を表示して、をご覧ください。ボタンを右下に表示してください。
私は多くの方法を試しましたが、良い方法でやり遂げることはできません。以下は
HTMLコード:
<!-- OUR STORES Section -->
<section id="stores" class="bg-light-gray">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Stores</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 col-sm-6 portfolio-item">
<a href="#storeModal1" class="store-link" data-toggle="modal">
<div class="store-hover">
<div class="store-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/store/store01.png" class="img-responsive" alt="">
</a>
<div class="store-caption">
<h4>Store 01</h4>
<p class="text-muted">Location 01</p>
</div>
</div>
<div class="col-md-4 col-sm-6 store-item">
<a href="#storeModal2" class="store-link" data-toggle="modal">
<div class="store-hover">
<div class="store-hover-content">
<i class="fa fa-plus fa-3x"></i>
</div>
</div>
<img src="img/store/store02.png" class="img-responsive" alt="">
</a>
<div class="store-caption">
<h4>Store 02</h4>
<p class="text-muted">Location 02</p>
</div>
</div>
</div>
</div>
</section>
ここで問題となるのは正確ですか?あなたはあなたが持っているものとあなたが望むものを示す[fiddle](https://jsfiddle.net/)を作成できますか? –
これをチェックすると、それはあなたが望むかもしれません。https://jsfiddle.net/n7oo7dLk/3/ – David