CS 02デフォルト属性
1.色
cssでは,色の表現方法はhtmlに色を表示する方法のように3種類ある.
違いは次のとおりです.
<h1 style="color:teal">색상 이름으로 표현된 청록색</h1>
このように要素から属性をロードすると、cssは<head>
<meta charset="UTF-8">
<title>CSS Colors</title>
<style>
.blue { color: blue; }
.green { color: green; }
.silver { color: silver; }
.teal { color: teal; }
.red { color: red; }
</style>
</head>
<body>
<h1 class="blue">색상 이름으로 표현된 파란색</h1>
<h1 class="green">색상 이름으로 표현된 녹색</h1>
<h1 class="silver">색상 이름으로 표현된 은색</h1>
<h1 class="teal">색상 이름으로 표현된 청록색</h1>
<h1 class="red">색상 이름으로 표현된 빨간색</h1>
</body>
これにより、要素に選択者を宣言し、headラベルのstyleラベルに選択者を読み込み、属性を書き込みます.2.背景属性
background-color
background-image
background-repeat
background-position
background-attachment
<style>
body { background: #FFCCCC url("/examples/images/img_man.png")
no-repeat left bottom fixed; }
</style>
3.テキスト
color
direction
letter-spacing
word-spacing
text-indent
text-align
text-decoration
text-transform
line-height
text-shadow
<head>
<meta charset="UTF-8">
<title>CSS Text</title>
<style>
p { text-shadow: 2px 2px lightgray; }
</style>
</head>
<body>
<h1>text-shadow 속성을 이용한 그림자 효과 설정</h1>
<p>텍스트에 간단히 그림자 효과를 줄 수 있습니다!</p>
</body>
4.フォント
5.リンク
6.リスト
7.テーブル
8.イメージストライプ
Reference
この問題について(CS 02デフォルト属性), 我々は、より多くの情報をここで見つけました https://velog.io/@maxkmh/CSS-02-기본-속성テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol