왜 아버지

10912 단어 div
왜 아버지 div가 펴지지 않았는지:
일반적인 상황에서 부모 대상이 높이를 설정하지 않으면 하위 대상은 하위 대상을 펼 수 있지만 하위 대상이 부동하고 부동을 지우지 않으면 IE8이나 FF 브라우저에서 부모 대상은 펼 수 없고 IE6에서 펼 수 있다.
코드 인스턴스:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.51texiao.cn/" />
<title>    </title>
<style type="text/css">
.parent{
  border:1px solid red;
  width:500px;
}
.first,.second{
  float:left;
  height:100px;
  width:100px;
  border:1px solid blue
}
</style>
</head>
<body>
<div class="parent">
  <div class="first"></div>
  <div class="second"></div>
</div>
</body>
</html>

위 코드는 IE6 아래에서 부모div를 펼 수 있지만 IE8 또는 FF 브라우저에서는 펼칠 수 없습니다.해결 방법은 부동을 제거하는 것이다.코드는 다음과 같습니다.
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.51texiao.cn/" />
<title>    </title>
<style type="text/css">
.parent{
  border:1px solid red;
  width:500px;
  overflow:hidden
}
.first,.second{
  float:left;
  height:100px;
  width:100px;
  border:1px solid blue
}
</style>
</head>
<body>
<div class="parent">
  <div class="first"></div>
  <div class="second"></div>
</div>
</body>
</html>

원래 주소:http://www.51texiao.cn/div_cssjiaocheng/2015/0519/1891.html
원래 주소는 다음과 같습니다.http://www.softwhy.com/forum.php?mod=viewthread&tid=4699

좋은 웹페이지 즐겨찾기