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>