221014 flex_03.html

2022. 10. 14. 10:55·Skills/CSS3, SCSS
<!DOCTYPE html>
<html lang="ko">
<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, maximum-scale=2.0, minimum-scale=1.0, user-scalable=no">
  <title>flex</title>
  <!-- 여백 다루기 -->
  
  <style>
  * {margin: 0; padding: 0;}

  section {
    width: 100%;
    background-color: #ccc;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
  }

  section div {
    width: 47%; height: 200px;
    border: 1px solid black; box-sizing: border-box;
    margin-right: 10px;
    margin-bottom: 10px;
    flex-grow: 1;
  }
  section div:nth-child(2n) {margin: 0;}

  @media all and (min-width: 321px) and (orientation: landscape) {
    section div {width: 20%;}
    section div:nth-child(2n) {margin-right: 10px;}
    section div:nth-child(4n) {margin: 0;}
  }
  </style>
</head>
<body>
  <section>
    <div class="box01">box01</div>
    <div class="box02">box02</div>
    <div class="box03">box03</div>
    <div class="box04">box04</div>
    <div class="box05">box05</div>
    <div class="box06">box06</div>
    <div class="box07">box07</div>
    <div class="box08">box08</div>
    <div class="box09">box09</div>
    <div class="box10">box10</div>
  </section>
</body>
</html>

'Skills > CSS3, SCSS' 카테고리의 다른 글

221014 flex_05.html  (0) 2022.10.14
221014 flex_04.html  (0) 2022.10.14
221014 flex_02.html  (1) 2022.10.14
221014 flex_01.html  (0) 2022.10.14
221012 mobile_landscape.html  (0) 2022.10.14
'Skills/CSS3, SCSS' 카테고리의 다른 글
  • 221014 flex_05.html
  • 221014 flex_04.html
  • 221014 flex_02.html
  • 221014 flex_01.html
개발자 윤구나
개발자 윤구나
개발 공부를 하고 있습니다. Let's go!
  • 개발자 윤구나
    이것은 무엇?????
    개발자 윤구나
    • 분류 전체보기
      • Skills
        • Java
        • Database
        • Flutter, Dart
        • JavaScript
        • React
        • HTML5
        • CSS3, SCSS
        • PHP
        • C#
        • Unity
        • Algorithm
        • GIT·GitHub
        • 그 외
      • Book Review
      • IT NEWS
      • 설계
      • 자기 계발
  • 블로그 메뉴

    • 홈
    • 방명록
  • 인기 글

  • 최근 글

  • 최근 댓글

  • 전체
    오늘
    어제
  • hELLO· Designed By정상우.v4.10.3
개발자 윤구나
221014 flex_03.html
상단으로

티스토리툴바