# 2.스타일조작

# 목차

  1. 1. style
    1. 1.1.1. 기본문법
      1. 1.1.2. 예제

# 1. style

HTML 요소의 스타일속성을 제어할수있다.

# 1.1.1. 기본문법

Element.style.css속성='css속성값';

# 1.1.2. 예제

미리보기
https://qwerewqwerew.github.io/source/js/partial/attribute/3.html

html
js
<h1>Hello World</h1>
const title = (document.querySelector('h1').style.backgroundColor = 'yellow');