언어/HTML&CSS&JAVA Script

CSS가상클래스 선택자

NIGHT_LOVE 2020. 4. 25. 13:40
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
<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta charset="utf-8">
    <style>
        div {color: white}
        h2:first-letter {font-size: 30px;color: red; text-transform: uppercase;}
        h3:first-line{color: blue;}
        input:focus{background-color: red;}
        input:checked+div.d1{background-color: gray;}
        input:checked+div.d2{background-color: black;}
    </style>
</head>
<body>
    <h2>states pseudo-classes</h2>
    <h3>문제) 대한민국 수도는?</h3>
    <p>정답 작성 : <input type="text"></p>
    <h2>answer</h2>
    힌트보기 :<input type="checkbox">
    <div class="d1"> 
        남대문이 있는 곳이죠
    </div>
    정답보기:<input type="checkbox">
    <div class="d2">
        서울
    </div>
</body>
</html>
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs