ソースコードの中の←◆の部分の「background: transparent」 が、最下部の「このページとは別のページの例①」の様に「HTML」のtransparent指定や、「CSS」のbackground-color: #666666;の様に指定されていないので、質問文の中の「background: transparent」の記述の意味がわかりません。「background: transparent」で検索しても、「background-color: #666666;」の様に実際の色を指定した例を挙げたサイトしか見当たりませんでした。transparentが要素を透明にすることはわかるのですが、ソースコード中の←◆の部分の「background: transparent」は、実際にどの部分を透明にするのでしょうか?
<!DOCTYPE html> <html class="no-js seed-csp4" lang="en"> <head> <meta charset="utf-8"> <title>Nothing found for Wp Archives 166493</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap and default Style --> <link rel="stylesheet" href="http://monopowers.com/profile/wordpress/wp-content/plugins/coming-soon/themes/default/bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="http://monopowers.com/profile/wordpress/wp-content/plugins/coming-soon/themes/default/style.css"> <style type="text/css"> /* calculated styles *//* Background Style */
html{
height:100%;
background: #fafafa;
}
.seed-csp4 body{
height:100%;
background: transparent; ←◆
}
/* Text Styles */
.seed-csp4 body{
font-family: Helvetica, Arial, sans-serif }
.seed-csp4 h1, .seed-csp4 h2, .seed-csp4 h3, .seed-csp4 h4, .seed-csp4 h5, .seed-csp4 h6{
font-family: Helvetica, Arial, sans-serif }
.seed-csp4 body{
color:#666666;
}
.seed-csp4 h1, .seed-csp4 h2, .seed-csp4 h3, .seed-csp4 h4, .seed-csp4 h5, .seed-csp4 h6{
color:#444444;
}
.seed-csp4 a, .seed-csp4 a:visited, .seed-csp4 a:hover, .seed-csp4 a:active{
color:#27AE60;
}
</style>
「このページとは別のページの例①」
「HTML」
}
「CSS」
tr1 p{
background-color: #666666;
}
10月3日、13時 追記致します。
ご回答ありがとうございます。transparentで透明にする部分は、以下の2枚目の添付画像で水色に反転しているbodyだと思いますが(画像添付の為、body部分を大幅に短縮、新たな疑問が浮かびました。
.seed-csp4 body{
height:100%;
background: ▼transparent;
先ず、1枚目の添付画像の右の表の上から7段目に上記のコードの記述がありましたので(質問文に載せたソースコードにもありました)、2枚目の添付画像の水色に反転したbody自体を透明にしているのだと思いますが、その理解で正解でしょうか?
1枚目の添付画像の右の表の上から6段目に
.seed-csp4 body{
color:■#666666
と記述があり、#666666が濃い灰色なので、body全体に一旦濃い灰色を付けて、background: ▼transparent; で透明にして消すという行為自体の意味がわかりません。
body全体に一旦濃い灰色を付けて、後にtransparentで消すなら、最初からbodyに色を付けずに白いままにすればいいと思うのですが如何でしょうか?
回答2件
あなたの回答
tips
プレビュー