Eggs Sunny Side Up
본문 바로가기
Web/HTML_CSS

[CSS] display, none

by guswn100059 2023. 3. 28.
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <!-- 개발자모드 키는 법 : F12 or 오른쪽 마우스_검사 -->

    <style>
        /* display : block
            기본값이 무조건 한 줄을 차지하고 있는 요소
            width, height 설정이 가능 (p태그)

            display : inline
            내가 담은 컨텐츠만큼만 크기로 가지는 요소
            width, height 설정이 불가능 (span태그)
        */
        p, span {
            width: 200px;
            height: 200px;
        }
        p {
            background-color: lightpink;
        }
        span {
            background-color: lightblue;
        }
    </style>
</head>
<body>
    <p>p태그입니다.</p>
    <p>p태그입니다.</p>
    <p>p태그입니다.</p>

    <span>span태그입니다.</span>
    <span>span태그입니다.</span>
    <span>span태그입니다.</span>
</body>
</html>


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        .answer {
            display: none;
        }

        .question:hover+.answer {
            display: block;
        }
    </style>
</head>
<body>
    <!-- span.question -->
    <span class="question">
        Q. 오늘은 무슨 요일인가요?
    </span>

    <span class="answer">
        A. 화요일임.
    </span>

    <br><br>

    <span class="question">
        Q. 점심은 뭐 드셨나요?
    </span>

    <span class="answer">
        A. 제육 굿
    </span>

</body>
</html>


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        /* 1. 사진 숨기기 */
        img {
            display: none;
        }

        /* 2. 질문에 마우스 클릭했을 때 사진 나타내기 */
        p:active+img {
            display: block;
        }

    </style>
</head>
<body>
    <p>최애는 누구인가요?</p>
    <img src="../HTML/톰크루즈.webp" alt="이미지 오류" width="150">
</body>
</html>

'Web > HTML_CSS' 카테고리의 다른 글

[CSS] radius  (0) 2023.03.28
[CSS] margin, padding  (0) 2023.03.28
[CSS] 단위  (0) 2023.03.27
[CSS] 반응선택자  (0) 2023.03.27
[CSS] 계층선택자  (0) 2023.03.27

댓글