わからないこと
1.円形の図形と背景画像が参考HPのように重ならない。
2.背景画像が中途半端な表示になってしまい、「そこで必要なのが稼ぐ力です」という部分との空白ができてしまっている。
試したこと
1.width等を書いて実行、背景画像の中でしか動かせず。
2.marginやpaddingを使用してみたが、空隙が埋まらず・・・。
該当コード
1.
html
<div class="part4">
<div class="about">
<h3>ABOUT</h3>
</div>
</div>
css
.part4 {
background-image: url(../images/road.jpg);
background-size: 100%;
background-position: center;
background-repeat: no-repeat;
padding-top: 10px;
}
.about {
background-color: #eab857;
border-radius: 50%;
height: 80px;
width: 80px;
margin:0 auto;
}
- {
margin: 0;
padding: 0;
}
.part3 h2 {
position: relative;
text-align: center;
padding: 35px 0;
margin: 10px auto;
margin-top: 50px;
}
.part3 h2::before {
content: "";
position: absolute;
top: 10px;
left: 350px;
width: 50px;
height: 50px;
border-top: 4px solid #EBB94D;
border-left: 4px solid #EBB94D;
}
.part3 h2::after {
content: "";
position: absolute;
top: 50px;
right: 300px;
width: 50px;
height: 50px;
border-bottom: 4px solid #EBB94D;
border-right: 4px solid #EBB94D;
}
.content {
font-size: 20px;
font-weight: 100;
margin-bottom: 100px;
}
.content span {
color: black;
font-weight: bold;
}
.under {
background: linear-gradient(transparent 70%, #EBB94D 0 );
}
回答2件
あなたの回答
tips
プレビュー