-2
ほとんどの現代のサイトが私が探しているものがあります。私は自分のサイトのさまざまな領域の背景を変更できるようにしたいと考えています。たとえば、https://adwords.google.com/intl/en_uk/home/ Googleのページは青から白、別の色の白に変化します。サイトのさまざまな塊の背景色を変更する方法
どうすればよいですか?彼らは何をすべきか、事前
ほとんどの現代のサイトが私が探しているものがあります。私は自分のサイトのさまざまな領域の背景を変更できるようにしたいと考えています。たとえば、https://adwords.google.com/intl/en_uk/home/ Googleのページは青から白、別の色の白に変化します。サイトのさまざまな塊の背景色を変更する方法
どうすればよいですか?彼らは何をすべきか、事前
で
おかげで、異なるセクションを作成し、セクションごとに異なる背景色を設定しています。
div {
width: 100%;
height: 150px;
}
#section1 {
background-color: red;
}
#section2 {
background-color: blue;
}
#section3 {
background-color: yellow;
}
<div id="section1">Content for section 1</div>
<div id="section2">Content for section 2</div>
<div id="section3">Content for section 3</div>
ありがとうございます! :) – Matt1966
CSSです[ '背景-color'](https://developer.mozilla.org/en-US/docs/Web/CSS/background-color)プロパティ何探している? –
background-colorは私が考えている背景全体をします。上記のURLのように色分けして色分けしたいのですが: – Matt1966
重複している可能性がありますhttps://stackoverflow.com/questions/8704817/how-to-style-a-div-to-have-a-background-color -cont-the-the-width-of-the-contenの範囲 – TidyDev