プログラミング初心者です。初歩的なことで申し訳ありませんが、
ご回答をいただきたいことが2つあります。
1.下記のmore product部だけcssが反映されません。
模写サイトのように、moreのボタンを作成したいのですが、出来ません。
2.product部のコンテンツを、3つずつ横並びにしたいのですが、
cssを設定しても、画像は小さくならず、pタグの中のメッセージだけどんどん小さくなります。
どうすれば、模写サイトのようになるのでしょうか。
【模写サイト】:https://pas-pol.jp/
html
1<div class="product-wrapper"> 2 <div class="product-container"> 3 <div class="product-title">PRODUCT</div> 4 <a class="more product" href="https://www.google.com/?hl=ja">MORE</a> 5 6 <div class="products"> 7 <div class="product"> 8 <a href="#"> 9 <img src="image/fes001t.png" > 10 <p>The World Festival Guide -海外の音楽フェス完全ガイド-</p> 11 </a> 12 </div> 13 <div class="product"><a href="#"> 14 <img src="image/banner_サムネイル21.png" > 15 <p>この世界で死ぬまでにしたいこと2000</p> 16 </a> 17 </div> 18 <div class="product"><a href="#"> 19 <img src="image/365日本カレンダー_サムネイル1.png" > 20 <p>365日日本一周 絶景日めくりカレンダー 21 </p> 22 </a> 23 </div> 24 <div class="product"><a href=""> 25 <img src="image/passportnotebook-thumb11.png" alt=""> 26 <p>PASSPORT NOTEBOOK series</p> 27 </a> 28 </div> 29 <div class="product"><a href=""> 30 <img src="image/englishbook-thumb11.png" > 31 <p>ひとり旅英会話BOOK</p> 32 </a> 33 </div> 34 <div class="product"> 35 <img src="image/a" alt=""> 36 <p>日本の絶景ポストカード</p> 37 </div> 38 </div> 39 </div> 40</div>
css
1.product-wrapper{ 2 font-family:Gill Sans Std Book; 3 height:800px; 4} 5.product-container{ 6 padding:110px; 7 width:200px; 8} 9.product-title{ 10 padding-left: 20px; 11 letter-spacing: 2px; 12 font-size:30px; 13} 14.more product { 15 text-decoration:none; 16 border: solid 20px black; 17 float: right; 18 font-size: 90px; 19 display:block; 20} 21 22.products{ 23 width:100px; 24} 25 26.product img{ 27 margin:60px; 28 cursor:pointer; 29 height:20%; 30 widows: 20%; 31 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/22 05:16