私はHTMLとCSSのウェブサイトで作業しています。ページの上にdivを作成
@font-face {
font-family: NS;
src: url(https://cdn.getforge.com/rappatic.getforge.io/1513714024/fonts/nsr.ttf);
}
@font-face {
font-family: PS;
src: url(https://cdn.getforge.com/rappatic.getforge.io/1513714024/fonts/psr.ttf);
}
@font-face {
font-family: KR;
src: url(https://cdn.getforge.com/rappatic.getforge.io/1513714024/fonts/kr.ttf);
}
@font-face {
font-family: ANR;
src: url(https://cdn.getforge.com/rappatic.getforge.io/1513714024/fonts/anr.otf)
}
body {
/*background: linear-gradient(to top right, #FFE259, #FFA751, #FFAF7B);
background-attachment: fixed;*/
width: 100%;
margin: auto;
height: 100%;
}
p {
font-family: "ns";
}
h1 {
font-family: "anr";
}
.white {
color: #ffffff;
}
.black {
color: #000000;
}
<div style="width: 100%; background: linear-gradient(to top right, #FFE259, #FFA751, #FFAF7B); background-attachment: fixed;">
<div style="width: 70%; margin: 3% 15% 0 15%;">
<h1 class="white" style="font-size: 60px; font-family: KR !important;">Hi, I'm rappatic.</h1>
<p class="white" style="font-size: 30px; font-family: KR !important; line-height: .0em;">I code when I feel like it.</p>
<br>
<div>
あなたが見ることができるように、DIVの上に白いバーがあります。背景の色を変更すると、白いバーが実際に背景の一部であることが確認されます。 divのページの上に滞在する方法はあります、白いバーが消えますか?
@オビディアンの解決法は簡単です。 – KLTR