티스토리 뷰

반응형

✏️ 10장 마무리 문제 - 1번

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>10-1 마무리 문제</title>
    <style>
      img {
        margin-right: 50px;
        border: 1px solid #ccc;
        box-shadow: 2px 2px 5px #ccc;
      }
      img:first-of-type {
        border: 2px solid #f00;
      }
    </style>
  </head>
  <body>
    <img src="images/1.jpg" alt="" />
    <img src="images/2.jpg" alt="" />
    <img src="images/3.jpg" alt="" />
  </body>
</html>

✏️ 10장 마무리 문제 - 2번

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>10-2 마무리 문제</title>
    <style>
      * {
        box-sizing: border-box;
      }
      .top-menu {
        margin: 50px auto;
        padding: 0;
        list-style: none;
        width: 605px;
        height: 35px;
        box-shadow: 0 3px 4px #8b8b8b;
        background-color: #dadada;
      }
      .top-menu li {
        float: left;
        border-right: 1px solid #929292;
      }
      .top-menu li a:link {
        color: black;
        text-decoration: none;
        text-align: center;
        display: block;
        width: 100px;
        height: 35px;
        line-height: 35px;
      }
      .top-menu li a:visited {
        color: black;
      }
      .top-menu li:last-child {
        border-right: none;
      }
      .top-menu li:not(:last-child) a:hover {
        background-color: #555;
        color: #fff;
      }
      .top-menu li:last-child a:hover {
        background-color: #b30000;
        color: #fff;
      }
    </style>
  </head>
  <body>
    <nav>
      <ul class="top-menu">
        <li><a href="#">메뉴1</a></li>
        <li><a href="#">메뉴2</a></li>
        <li><a href="#">메뉴3</a></li>
        <li><a href="#">메뉴4</a></li>
        <li><a href="#">메뉴5</a></li>
        <li><a href="#">메뉴6</a></li>
      </ul>
    </nav>
  </body>
</html>
반응형
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/07   »
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
글 보관함