CSS で要素の背景色を変更するのはシンプルで簡単です。手順は次のとおりです。 要素を選択します: 背景色を変更する HTML 要素を決定します。 背景色を使用する: CSS ファイルまたは 内で背景色プロパティを適用します。 HTML 内のタグ。</p></li> </ol> <h3> 例 </h3> <h4> HTML </h4> <pre><!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="container"> <p id="paragraph">This is a paragraph.</p> <button>Click Me</button> </div> </body> </html> </pre> <h4> CSS </h4> <pre>/* Change background color of the body */ body { background-color: lightblue; } /* Change background color of an element with the class 'container' */ .container { background-color: lightgreen; } /* Change background color of an element with the id 'paragraph' */ #paragraph { background-color: lightyellow; } /* Change background color of all button elements */ button { background-color: lightcoral; } </pre>