The `background-color` property in CSS is used to specify the background color of an element.
CSSの background-colorプロパティは、要素の背景色を指定するために使用されます。このプロパティを使用することで、要素の背景に任意の色を設定することができます。
以下のように、色を指定する値を background-colorプロパティに設定します。
CSS
element {
background-color: 色;
}
background-colorプロパティでは、色をいくつかの方法で指定できます。
CSS
p {
background-color: red;
}
CSS
div {
background-color: #ff0000; /* 赤 */
}
CSS
header {
background-color: rgb(255, 0, 0); /* 赤 */
}
CSS
section {
background-color: rgba(255, 0, 0, 0.5); /* 半透明の赤 */
}
CSS
footer {
background-color: hsl(0, 100%, 50%); /* 赤 */
}
CSS
article {
background-color: hsla(0, 100%, 50%, 0.5); /* 半透明の赤 */
}
HTML
<p>Light gray</p>
<p>Blue</p>
<p>Translucent green</p>
<p>Green</p>
CSS
p:nth-of-type(1) {
background-color: #f0f0f0; /* 薄いグレー */
}
p:nth-of-type(2) {
background-color: blue; /* 青 */
}
p:nth-of-type(3) {
background-color: rgba(0, 255, 0, 0.3); /* 半透明の緑 */
}
p:nth-of-type(4) {
background-color: hsl(120, 100%, 50%); /* 緑 */
}
Light gray
Blue
Translucent green
Green