前提・実現したいこと
現在Pas-Polというサイトの模写をやっています。https://pas-pol.jp/ tableを使って三枚の画像を並べました。そうすると画像と画像の間に空白が開きすぎてしまいました。 https://pas-pol.jp/ これをこのサイトの3section目の三枚の画像のような間隔にするにはどうすればいいのでしょうか?marginで調節しようとしましたが自力ではうまくいきませんでした。また二段目の写真の調節もうまくいきません。
tableタグを使った時、cssで思うように画像の位置などを調節できなくなります。
回答よろしくお願いいたします。
発生している問題・エラーメッセージ
該当のソースコード
html
<table class="profile"> <tbody> <tr> <td width ="33%"> <img src="https://s3-ap-northeast-1.amazonaws.com/paspol-images/wp-content/uploads/2021/01/wh_thumb2.png"> <p>地球一周 365日 世界遺産絶景の旅</p> </td> <td width ="33%"> <img src="https://s3-ap-northeast-1.amazonaws.com/paspol-images/wp-content/uploads/2020/12/kyoto365_thumnail-1.png"> <p>地球一周 365日 京都 絶景の旅</p></td> <td width ="33%"> <img src="https://s3-ap-northeast-1.amazonaws.com/paspol-images/wp-content/uploads/2020/09/banner_thumb1.png"> <p>地球一周 365日 北海道 絶景日めくりカレンダー</p> </td> </tr> </tbody> </table>
css
.profile {
margin: 3px auto;
margin-right: 150px;
}
.profile img {
width: 240px;
}
HTML 変更後↓
<div class="profile"> <div class="world"> <img src="https://s3-ap-northeast-1.amazonaws.com/paspol-images/wp-content/uploads/2021/01/wh_thumb2.png"> <p>地球一周 365日 <br> 世界遺産絶景の旅</p></div> <div class="kyoto"> <img src="https://s3-ap-northeast-1.amazonaws.com/paspol-images/wp-content/uploads/2020/12/kyoto365_thumnail-1.png"> <p> 365日 京都 絶景の旅</p> </div> <div class="Hokkaido"> <img src="https://s3-ap-northeast-1.amazonaws.com/paspol-images/wp-content/uploads/2020/09/banner_thumb1.png"> <p>365日 北海道 絶景<br> 日めくりカレンダー</p> </div> </div>
css 変更後
.profile {
width: 100%;
display: flex;
}
.world img {
width: 240px;
margin-left: 360px;
margin-right: 30px;
}
.world p {
font-family:"Helvetica Neue", Helvetica, Arial, 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3"
, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif; ;
font-style: normal;
color: #13191b;
font-size: 20px;
font-weight: 700;
line-height: 34px;
margin-left: 360px;
margin-right: 30px;
text-align: center;
}
.kyoto img {
width: 240px;
}
.kyoto p {
font-family:"Helvetica Neue", Helvetica, Arial, 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3"
, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif; ;
font-style: normal;
color: #13191b;
font-size: 20px;
font-weight: 700;
line-height: 34px;
text-align: center;
}
.Hokkaido img {
width: 240px;
margin-left: 30px;
}
.Hokkaido p {
font-family:"Helvetica Neue", Helvetica, Arial, 游ゴシック, YuGothic, "ヒラギノ角ゴ ProN W3"
, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif; ;
font-style: normal;
color: #13191b;
font-size: 20px;
font-weight: 700;
line-height: 34px;
text-align: center;
}
試したこと
画像と文字をdivでくくって、display: flex;
を使用し、そこから微調整。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー