Home > Web Front-end > HTML Tutorial > overflow:hidden的问题_html/css_WEB-ITnose

overflow:hidden的问题_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:42:49
Original
1225 people have browsed it

HTML css

<html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />		<title>无标题文档</title>	</head>	<body>        <div style="border:solid 1px #006600; width:300px; height:300px; float:left;"></div>        <div style="border:solid 1px #006600; width:200px; height:200px; background-color:#060"></div>    </body></html>
Copy after login
这段代码相信大家都能看得懂。之后我再第二个div里面加入了overflow:hidden属性。就成了下面这样了,为什么?
<html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />		<title>无标题文档</title>	</head>	<body>        <div style="border:solid 1px #006600; width:300px; height:300px; float:left;"></div>        <div style="border:solid 1px #006600; width:200px; height:200px; background-color:#060; overflow:hidden"></div>    </body></html>
Copy after login
我知道overflow:hidden是父级元素用来清除浮动的,使得视觉上面没有浮动的父级元素自动扩大,包含浮动的子元素。但是我现在没有编写父级元素,而是两个同级元素div,并且在第二个div上设置了overflow:hidden属性。为什么第二个div就逃离了第一个浮动div的覆盖范围,并且紧紧贴着第一个浮动div。就仿佛第二个div也设置了float:left属性一样。按理说它俩的位置不会有什么变化才对啊?因为overflow:hidden是给父级元素清除浮动的,但现在是应用在了同级元素上,不是父级元素。原理是什么,请高人回答。

回复讨论(解决方案)

没人能解答吗?请高人回答。

天呐,难道真的没人能回到这个问题吗?

我测试的都是第二种显示。测试浏览器为IE8.0。

我测试的都是第二种显示。测试浏览器为IE8.0。 IE另当别论,所有做前端的,都恨微软这个傻逼。

我已经从知乎知道了,结贴。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template