background-color (背景色)

square cssの基本

background-colorプロパティは「背景色」を指定する場合に使用します。

html

<div class="square"></div>

css

.square {
	width: 100px;
	height: 100px;
	background-color: #39a9d6;
}

設定方法

background-color: 値

色指定
「#000000」(色コード)又は「カラーネーム」(red や gray 等)
透明
transparent(初期値)
タイトルとURLをコピーしました