CSS 기본 튜토리얼: 플로팅

CSS 부동

  • 부동: 요소 부동, 값: 왼쪽(왼쪽 부동), 오른쪽(오른쪽 부동)

  • 플로팅 요소는 주변 요소의 가장자리 또는 이전 플로팅 요소의 가장자리에 떠 있을 때까지 왼쪽이나 오른쪽으로 떠 있습니다.

  • 플로팅 요소는 더 이상 공간을 차지하지 않으며, 플로팅 요소의 수준은 일반 요소보다 높습니다.

  • 플로팅 요소는 "블록 요소"여야 합니다. 원래 어떤 요소였든 상관없습니다.

  • 플로팅된 요소가 너비를 지정하지 않으면 플로팅된 후 최대한 좁아집니다. 따라서 플로팅 요소는 일반적으로 고정된 너비와 높이를 갖습니다.

  • 연속된 여러 요소는 함께 플로팅되어야 합니다.

플로팅 기능: 여러 블록 요소를 나란히 배열할 수 있습니다.

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
    <style type="text/css">
        .box{
            width:350px;
            height:400px;
            background-color:#f0f0f0;
        }
        .box1{
             width:50px;
            height:50px;
            background-color:#ff0000;
            float:left;
        }
        .box2{
             width:50px;
            height:50px;
            background-color:#00ff00;
            float:left;
        }
        .box3{
             width:50px;
            height:50px;
            background-color:#0000ff;
            float:left;
        }
    </style>
    </head>
    <body>
        <div class="box">
            <div class="box1">php.cn</div>
            <div class="box2">php.cn</div>
            <div class="box3">php.cn</div>
        </div>
    </body>
</html>

Q: 요소를 둘러싸고 부동 요소를 감싸는 방법은 무엇입니까?

이제 다음 섹션의 지식이 필요합니다. 플로팅 요소 아래에서 클리어 플로팅 연산을 사용하세요.



지속적인 학습
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <style type="text/css"> .box{ width:350px; height:400px; background-color:#f0f0f0; } .box1{ width:50px; height:50px; background-color:#ff0000; float:left; } .box2{ width:50px; height:50px; background-color:#00ff00; float:left; } .box3{ width:50px; height:50px; background-color:#0000ff; float:left; } </style> </head> <body> <div class="box"> <div class="box1">php.cn</div> <div class="box2">php.cn</div> <div class="box3">php.cn</div> </div> </body> </html>
  • 코스 추천
  • 코스웨어 다운로드
현재 코스웨어를 다운로드할 수 없습니다. 현재 직원들이 정리하고 있습니다. 앞으로도 본 강좌에 많은 관심 부탁드립니다~
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!