반응형
Text Color
color 속성은 텍스트의 색을 설정하는 데 사용됩니다.
CSS를 사용하면 색상은 다음과 같이 지정됩니다.
a color name - like "red"
a HEX value - like "#ff0000"
an RGB value - like "rgb(255,0,0)"
가능한 색상 값의 전체 목록은 CSS 색상 값을 참조하십시오.
페이지의 기본 텍스트 색은 본문 선택기에 정의되어 있습니다.
Example
body {
color: blue;
}
h1 {
color: green;
}
<!DOCTYPE html>
<html>
<head>
<style>
body {
color: blue;
}
h1 {
color: green;
}
</style>
</head>
<body>
<h1>This is heading 1</h1>
<p>This is an ordinary paragraph. Notice that this text is blue. The default text color for a page is defined in the body selector.</p>
</body>
</html>
반응형
'IT > css' 카테고리의 다른 글
css 글자 간격 Letter Spacing (0) | 2017.02.13 |
---|---|
css Text Alignment (0) | 2017.02.06 |
css Outline - Shorthand property (0) | 2017.02.06 |
css Outline Width (0) | 2017.02.04 |
css Outline Color (0) | 2017.02.04 |