44: CSS position, float

jk·2024년 3월 6일
0

kdt 풀스택

목록 보기
84/127



1. css에서의 position 의 4가지 설명하시오.

  • fixed : real absolute
  • absolute : fake absolute. sometimes relative
  • static : default without the top and left
  • relative : from static. It makes absolute child relative.



2. float 속성에 대하여 설명하시오.

  • right : floating on right
  • left : floating on left
  • but the floated one avoids contents there.



3. 강아지 사이트 및 header 사이트를 구현하시오.

<!-- code1 -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        margin: 0;
        padding: 0;
        border: 0;
      }
      body {
        margin: auto;
        width: 800px;
      }
      header {
        background-image: url(images/nav2.png);
        background-position: right;
        background-repeat: no-repeat;
        height: 150px;
        background-color: rgb(244, 96, 117);
      }
      li {
        list-style: none;
      }
      header li {
        display: inline-block;
        text-align: center;
        line-height: 180px;
        left: 40px;
        width: 120px;
        position: relative;
        color: white;
        font-weight: bold;
        font-size: 1.05em;
      }
      #right_image > img {
        display: block;
      }
      section {
        position: relative;
      }
      #left_content {
        width: 680px;
      }
      #right_image {
        width: 180px;
        border: 1px solid black;
        padding: 10px;
        left: 598px;
        position: absolute;
      }
      section > div {
        display: inline-block;
      }
      section > h1 {
        height: 100px;
        line-height: 100px;
        left: 10px;
        position: relative;
      }
      #left_content li {
        width: 275px;
        height: 230px;
        display: inline-block;
        border: 1px solid black;
        margin: 5px;
      }
      #left_content > ul > li:nth-child(1) {
        top: 100px;
        position: absolute;
      }
      #left_content > ul > li:nth-child(2) {
        top: 100px;
        left: 291px;
        position: absolute;
      }
      #left_content > ul > li:nth-child(3) {
        top: 347px;
        position: absolute;
      }
      #left_content > ul > li:nth-child(4) {
        top: 347px;
        left: 291px;
        position: absolute;
      }
      footer {
        text-align: center;
        background-color: black;
        color: white;
        height: 50px;
        line-height: 50px;
        width: 800px;
        top: 848px;
        position: absolute;
      }
      section p {
        font-size: 0.7em;
        margin: 10px;
      }
      section h2 {
        margin: 20px 10px;
      }
    </style>
  </head>
  <body>
    <header>
      <ul>
        <li>애완견 종류</li>
        <li>입양하기</li>
        <li>건강돌보기</li>
        <li>더불어살기</li>
      </ul>
    </header>
    <section>
      <h1>강아지 용품 준비하기</h1>
      <div id="left_content">
        <ul>
          <li>
            <h2>강아지 집</h2>
            <p>
              강아지가 편히 쉴 수 있는 포근한 집이 필요합니다. 강아지의 집은
              강아지가 다 큰 후에도 계속 쓸 수 있는 집으로 구입하세요.집을
              구입하실 때는 박음질이 잘 되어 있는지, 세탁이 간편한 제품인지 꼭
              확인하시고 고르시는 것이 좋습니다.
            </p>
          </li>
          <li>
            <h2>강아지 먹이</h2>
            <p>
              강아지의 먹이는 꼭 어린 강아지용으로 나와있는 사료를 선택하세요.
              강아지들은 사람에 비해 성장속도가 8배정도 빠르답니다. 따라서
              강아지에게는 성장속도에 맞는 사료를 급여하셔야 합니다. 사람이 먹는
              음식을 먹게 되면 양념과 향신료에 입맛이 익숙해지고, 비만이 될
              가능성이 매우 높아집니다. 강아지용 사료는 생후 12개월까지
              급여하셔야 합니다.
            </p>
          </li>
          <li>
            <h2>밥그릇, 물병</h2>
            <p>
              밥그릇은 쉽게 넘어지지 않도록 바닥이 넓은 것이 좋습니다.물병은
              대롱이 달린 것으로 선택하세요. 밥그릇에 물을 주게 되면 입 주변에
              털이 모두 젖기 때문에 비위생적이므로 대롱을 통해서 물을 먹을 수
              있는 물병을 마련하시는 것이 좋습니다.
            </p>
          </li>
          <li>
            <h2>이름표, 목줄</h2>
            <p>
              강아지를 잃어버릴 염려가 있으니 산책할 무렵이 되면 이름표를 꼭
              목에 걸어주도록 하세요. 그리고 방울이 달린 목걸이를 하고자 하실
              때는 신중하셔야 합니다. 움직일 때마다 방울이 딸랑 거리면 신경이
              예민한 강아지들에게는 좋지 않은 영향을 끼칠 수 있기 때문입니다.
            </p>
          </li>
        </ul>
      </div>
      <div id="right_image">
        <img src="images/1.png" alt="" />
        <img src="images/2.png" alt="" />
        <img src="images/3.png" alt="" />
      </div>
    </section>
    <footer>Copyright 2012 funnycom</footer>
  </body>
</html>

<!-- code2 -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        margin: 0;
        padding: 0;
        border: 0;
      }
      body {
        margin: auto;
        width: 800px;
        height: 658px;
        border: 1px solid black;
      }
      #header {
        width: 780px;
        height: 100px;
        border: 1px solid black;
        margin: auto;
        margin-top: 10px;
        text-align: center;
        line-height: 100px;
      }
      #navigation {
        width: 780px;
        height: 100px;
        border: 1px solid black;
        margin: auto;
        margin-top: 10px;
      }
      footer {
        width: 780px;
        height: 100px;
        border: 1px solid black;
        margin: auto;
        text-align: center;
        line-height: 100px;
      }
      #navigation > p {
        height: 50px;
        line-height: 50px;
        text-align: center;
      }
      #navigation > ul {
        width: 700px;
        height: 40px;
        border: 1px solid black;
        margin: auto;
      }
      #navigation li {
        list-style: none;
        width: 139px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        float: left;
        border-right: 1px solid black;
      }
      #navigation li:nth-child(5) {
        border-right: 0;
      }
      section {
        overflow: hidden;
      }
      #content {
        width: 600px;
        height: 300px;
        border: 1px solid black;
        margin: 10px;
        float: left;
        text-align: center;
      }
      #banner {
        width: 167px;
        height: 300px;
        border: 1px solid black;
        margin-top: 10px;
        float: left;
        text-align: center;
      }
    </style>
  </head>
  <body>
    <div>
      <header>
        <div id="header">HEADER</div>
        <div id="navigation">
          <p>NAVIGATION</p>
          <ul>
            <li>menu1</li>
            <li>menu2</li>
            <li>menu3</li>
            <li>menu4</li>
            <li>menu5</li>
          </ul>
        </div>
      </header>
      <section>
        <div id="content">CONTENT</div>
        <div id="banner">BANNER</div>
      </section>
      <footer>FOOTER</footer>
    </div>
  </body>
</html>

profile
Brave but clumsy

0개의 댓글