HTML 태그</strong></p> <p><strong><img src="https://img.php.cn/upload/article/000/000/029/5d9c352313405883.jpg" alt="HTML <스타일> 태그" ></strong></p> <p>모든 주요 브라우저는 <style> 태그를 지원합니다. </p> <p><strong>정의 및 사용법 </strong> (추천 학습: <a href="https://www.php.cn/div-tutorial.html" target="_self">HTML 입문 튜토리얼</a>)</p> <p><strong><style> 태그는 HTML 문서의 스타일 정보를 정의하는 데 사용됩니다. </strong></p> <p><strong>스타일에서는 HTML 문서가 브라우저에서 렌더링되는 방식을 지정할 수 있습니다. </strong></p> <p>type 속성은 필수이며 스타일 요소의 내용을 정의합니다. 유일하게 가능한 값은 "text/css"입니다. </p> <p>스타일 요소는 헤드 섹션에 있습니다. </p> <p><strong>Tip</strong></p> <p><strong>팁: </strong>외부 스타일 시트에 연결하려면 <link> 태그를 사용하세요. </p> <p><strong>예: </strong></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><html> <head> <style type="text/css"> h1 {color: red} p {color: blue} header 1 A paragraph.