--- title: element.style slug: Web/API/ElementCSSInlineStyle/style tags: - API - HTML DOM - HTMLElement - Property - Reference - Style translation_of: Web/API/ElementCSSInlineStyle/style original_slug: Web/API/HTMLElement/style ---
HTMLElement.style
속성은 요소의 인라인 스타일에 접근하거나 설정할 때 사용할 수 있습니다. 접근자로서는 요소의 인라인 style
속성이 포함한 CSS 선언을 담은 {{domxref("CSSStyleDeclaration")}} 객체를 반환합니다
// Set multiple styles in a single statement elt.style.cssText = "color: blue; border: 1px solid black"; // Or elt.setAttribute("style", "color:red; border: 1px solid blue;"); // Set specific style while leaving other inline style values untouched elt.style.color = "blue";
DOM Level 2 Style: ElementCSSInlineStyle.style
{{Compat("api.HTMLElement.style")}}