私はこのCSSをコード化しました。なぜ「検索」が消えるのでしょうか?あなたが白の背景に白のテキストを持っているおかげCSSテキストが消える
<h2 class="domain_header">Search</h2>
.domain_header {
cursor: pointer;
display: block;
padding: 5px;
color: #fff;
position: relative;
text-transform: uppercase;
font-size: 12px;
letter-spacing: 2px;
border-left: 0px solid #06f;
border-bottom: 2px solid #0066FF;
font-weight:bold;
margin:0 0 3px;
}
テキストの色を '#fff'(白)に設定しているので、背景も白です。 –