初歩的な質問ですが回答をお願いいたします。
HTML,CSSでサイト作成の練習中なのですが2点質問があります。
1、メディアクエリでiPhoneサイズで表示するためにwidth100%で入力しても適用されず横表示のままになってしまいます。
2、aタグがdisplay="inline-box"にしてもtext-alignが適用されません。
Progateの項目ではメディアクエリでwidth100%にすればmax-widthにあわせて適用されていました。
該当のソースコード
【1の質問のHTML】
<!--特徴コンテンツ--> <div class="main-menu"> <div class="menu-contents"> <div class="menu-content2"> <img src="/Users/ryoma/Desktop/作成サイトフォルダ/MYPORTFOLIO/assets/imgフォルダ/main-menu画像/人型シルエット2.png" width="200px" height="200px" alt=""> <p>お洒落デザイン重視ではなく、集客を見込んだデザイン</p> </div> <div class="menu-content2"> <img src="/Users/ryoma/Desktop/作成サイトフォルダ/MYPORTFOLIO/assets/imgフォルダ/main-menu画像/人型シルエット2.png" width="200px" height="200px" alt=""> <p>起業イメージが上がる一文が表示されている</p> </div> <div class="menu-content2"> <img src="/Users/ryoma/Desktop/作成サイトフォルダ/MYPORTFOLIO/assets/imgフォルダ/main-menu画像/人型シルエット2.png" width="200px" height="200px" alt=""> <p>起業イメージが上がる一文が表示されている</p> </div> <div class="menu-content2"> <img src="/Users/ryoma/Desktop/作成サイトフォルダ/MYPORTFOLIO/assets/imgフォルダ/main-menu画像/人型シルエット2.png" width="200px" height="200px" alt=""> <p>起業イメージが上がる一文が表示されている</p> </div> </div> <a class="btn-1" href="">詳しく見る</a> →【2の質問のHTML】 </div>【CSS全体】
*{
box-sizing: border-box;
}
a:hover{
transition: all 0.5s;
background-color: gray;
}
li{
list-style: none;
}
body{
width: 100%;
}
header{
display:flex;
justify-content: flex-end;
font-family: serif;
}
.header-logo{
padding-right: 65px;
}
.header-logo-left{
font-weight: bolder;
padding-bottom: 0px;
}
.header-logo-left a{
padding-right: 2px;
margin:0 10px 0 0 ;
line-height: 50px;
color: black;
text-decoration: none;
}
.header-logo-left span{
position: relative;
position: absolute;
top:40px;
right:50px;
float: right;
font-size: 13px;
}
.top-wrapper{
text-align: center;
}
.top-content{
position: relative;
width: 100%;
}
.top-content img{
width: 100%;
}
.top-content p{
position: absolute;
top:30%;
left: 20%;
font-size: 100px;
color: white;
font-family: serif;
}
.menu-content1,.service-content1,.link-contents{
text-align: center;
margin-top: 150px;
}
.menu-contents,.service-contents{
display:flex;
justify-content: space-around;
}
.menu-content2,.service-content2{
width: 300px;
text-align: center;
}
.btn-1{
border:2px solid paleturquoise;
color: blue;
padding: 10px;
display: inline-block;
}
.coment-h2{
text-align: center;
margin-top:200px ;
}
.img-coments{
display:flex;
justify-content: center;
}
.coment{
width: 600px;
height: 600px;
font-size: 23px;
}
.link-contents a{
text-decoration: none;
color: black;
}
.link-contents h3{
padding-top: 5px;
text-align: center;
}
.link-content{
display: flex;
justify-content: center;
}
link a{
display: block;
}
.link li{
margin: 20px 0;
border: 1px solid gray;
}
.boxarrow{
display: block;
width: 300px;
padding: 40px;
}
footer{
background-color:linen;
}
.footer-content{
display: flex;
justify-content: center;
margin-top: 50px;
}
.footer-content a{
display: block;
color: black;
text-decoration: none;
}
.footer-1box,.footer-2box,.footer-3box{
margin: 0 0 20px 0;
}
.footer-contents li{
border: 1px solid gray;
width: 200px;
text-align: center;
}
.footer-bar{
padding: 20px;
background-color:papayawhip;
}
.footer-last{
display: flex;
justify-content: center;
}
.footer-last a{
color: black;
text-decoration: none;
margin: 0 30px;
}
@media screen and (max-width:800px){
footer{
width: 100%;
}
.top-wrapper p{
font-size: 30px;
white-space: pre;
}
.img-coments{
width: 100%;
display: flex;
flex-direction: column;
}
.menu-content2{
width: 100%;
display: inline-flex;
flex-direction: column;
}
.link-content{
display: flex;
flex-wrap: wrap;
}
.coment{
width: 400px;
font-size: 20px;
text-align: center;
}
.footer-content{
display: flex;
flex-direction: column;
}
}
試したこと
ネットで調べながら色々試しましたが解決しませんでした。
回答1件
あなたの回答
tips
プレビュー