Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

codingfarm

color 본문

web/CSS3

color

scarecrow1992 2020. 10. 2. 19:57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<html>
    <head>
        <style>
            #a{color : rgb(82,124,180)}
            #b{color : #32F6A4}
        </style>
    </head>
 
    <body>
        <h1 id="a">AAA</h1>
        <h1 id="b">BBB</h1>
    </body>
</html>
cs

 

 

'web > CSS3' 카테고리의 다른 글

box  (0) 2020.10.03
display  (0) 2020.10.02
font-size  (0) 2020.10.02
pseudo class selector  (0) 2020.10.02
nth-child()과 nth-of-type()  (0) 2020.10.02
Comments