画面を大小変えてみると、真ん中の文字などがバランスが崩れてしまうので、固定のままみるようにしたのですが、
やり方が悪いのか改善できません。詳しいかた教えていただきたいです。
『HTML』
『css』
@charset "utf-8";
html{
font-size: 100%;
}
body {
font-family: "Yu Gothic Medium","ゴシック medium", YuGothic,"ヒラギノ角ゴ Pro W3",
"sans-serif";
line-height: 1.7;
color: #432;
}
a{
text-decoration: none;
}
img{
max-width: 200%;
}
.logo{
width: 700px;
margin-top: 14px;
}
.main {
display: flex;
font-size: 1.25rem;
text-transform: uppercase;
margin-top: 35px;
list-style: none;
}
.main li{
margin-right: 36px;
color: aliceblue;
}
.main a{
color:#432
}
.main a:hover{
color:#0bd;
}
.page-header {
display: flex;
justify-content: space-between;
}
.wrapper {
margin: 0 auto;
padding: 0 4%;
}
.home-content {
text-align: center;
margin-top:10%;
}
.home-content h2 {
font-size: 2rem;
margin: 10px 0 42px;
color: aliceblue;
position: absolute;
top: 67%;
left:32%;
}
.page-title {
font-size: 5.0rem;
text-align: center;
color: aliceblue;
position: absolute;
top: 50%;
left:15%;
}
.button {
font-size: 1.375rem;
background: aliceblue;
color: black;
border-radius: 5px;
padding: 18px 32px;
position: absolute;
top: 76%;
left:44%;
}
.big-bg {
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
}
#home {
background-image: url(../images/top.jpg);
min-height: 100vh;
}
#home .page-title {
text-transform: none;
}
縮小するとこのような感じになります。!
イメージ説明
回答1件
あなたの回答
tips
プレビュー