하나의div는 200px이다.다른 div가 남은 페이지를 어떻게 채우는지

14105 단어
하나의div는 200px이다.다른div는 어떻게 남은 페이지를 가득 채웁니까?우선 이 문제는 내가 잘못 이해했다. 나는 넓이가 200px인 줄 알았다. 그리고 다른 하나는 어떻게 페이지를 가득 채울 수 있는지, 그러면 왜 두 개의div 레이아웃이 필요합니까?내가 먼저 넓이를 정하거나 높이를 정하는 상황만 적을게.너비 결정:
//   
<body style="margin:0;padding:0;height:100%;width:100%;position:absolute;">
<div style="background-color:#c7c7c7;width:300px;height:100%;float:left;">
div>
<div style="background-color:red;height:100%;margin-left:300px;">div>
body>
//   
<body style="margin:0;padding:0;height:100%;width:100%;position:absolute;">
<div style="background-color:#c7c7c7;width:300px;height:100%;float:left;">
div>
<div style="background-color:red;height:100%;overflow:hidden;">div>
body>

바디 블록급 요소는 높이가 없습니다. 화면 높이를 가득 채우려면 바디를 absolute로 설정하고 너비와 높이를 설정합니다. 만약에 너비를 설정하지 않으면 전체 화면의 너비도 아닙니다.
첫 번째div 부동 이후 문서 흐름을 차지하지 않고 두 번째div는 너비를 설정하지 않습니다. 기본 너비는 부모 요소의 100%이고 margin-left를 추가하여 내용을 첫 번째div에 덮이지 않게 하고 두 번째div는 부동을 명확하게 합니다.
높이 결정:
//   
<body style="margin:0;padding:0;height:100%;width:100%;position:absolute;">
<div style="background-color:#c7c7c7;width:100%;height:300px;float:left;">
div>
<div style="background-color:red;height:calc(100% - 300px);margin-top:300px;">div>
body>
//   
​
<body style="margin:0;padding:0;height:100%;width:100%;position:absolute;">
<div style="background-color:#c7c7c7;width:100%;height:100px;">
div>
<div style="background-color:red;width:100%;position:absolute;top:100px;bottom:0px;">div>
body>

방안은calc방법을 이용하면 물론 여기는calc방법을 사용하지 않아도 되고 Height를 100%로 직접 설정해도 된다.
방안2는positiontop와bottom을 이용하여 높이를 높이고 더욱 유연하게 한다.여기는 위에서 정한 넓이 방안으로 해도 돼요.
자, 다시 위의 첫 번째 질문으로 돌아가겠습니다. 만약div1의 너비와 높이가 200px라면 다른 div2는 남은 모든 페이지를 어떻게 점령합니까?이때 우리는 가장 간단한 방법으로 div2를 두 개의div3과div4로 나눌 수 있다. 이렇게 위의 방법으로 하나는 왼쪽을 점령하고 하나는 오른쪽을 점령하면 된다.만약 div2가 분할해 주지 않으면 어떻게 합니까?이 문제는 중첩되지 않도록 하는 것이 중점이기 때문에 이런 구조를 만나면 실천 개발에서 2개의div만 사용하지 않고 분리해야 한다.

좋은 웹페이지 즐겨찾기