CSS_29
·
CSS/기초 내용 정리
2024-10-10    DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>head>body>    h2>같은 문서에서다른 위치로 이동h2>    ul>        li>a href="#a">첫번째 단락a>li>        li>a href="#b">두번째 단락a>li>        li>a href="#c">세번째 단락a>li>        li>a href="#d">네번째 단락a>li>    ul>    a id="a">첫번째 단락a>       ..
CSS_28
·
CSS/기초 내용 정리
2024-10-10 DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    style>                .photo {            position: absolute;            left: 50px;            top: 100px;            opacity: 0.5;      /* 투명도 속성 */        }        .photo:hover {            opacity: 1;        }    style>head>..
CSS_27
·
CSS/기초 내용 정리
2024-10-10  DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    style>        .photo {            position: absolute;        /* 부모 요소에 속박되지 않고 객체로 취급되는 속성 */            left: 50px;            top: 20px;        }        .shadow {            position: absolute;            left: 450px;        ..
CSS_26
·
CSS/기초 내용 정리
2024-10-10  DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    style>        .round {            background-color: #666;            color: #fff;            font-size: 18px;            line-height: 1.7;            font-family: 궁서체, 돋움체;            width: 350px;            margin: 16px auto;..
CSS_25
·
CSS/기초 내용 정리
2024-10-10 DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    style>        .txt {            background-color: green;            width: 25%;            height: 90px;            margin: 10% 0 0 10%;            border: 0.3em dashed red;            padding: 20px;            line-height: 1.5;..
CSS_24
·
CSS/기초 내용 정리
2024-10-10    DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    style>        #first {            line-height: 200%;        }        #second ul li {            line-height: 2;            list-style: square;        }        #third ul li {            line-height: 2;            list-style: c..