>  기사  >  웹 프론트엔드  >  求解CSS浮动样式_html/css_WEB-ITnose

求解CSS浮动样式_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-21 09:31:001364검색

怎么才能使得粉红色的div模块放在绿色的div模块后面啊?


nbsp;html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">



无标题文档





    

        

        

        

    

    



回复讨论(解决方案)

#test3{
width:50px;
height:50px;
background:green;
clear:left;
flaot:left;
}

修正 为 float:left;

#test3{width:50px;height:50px;background:green;clear:left;flaot:left;}

float写错了

新手的通病

可以添加一个class 方便调用:

.clear{clear:both;overflow:hidden;height:0px;line-height:0px;font-size:0px;}


<div id="container">    	<div id="test1"></div>        <div id="test2"></div>		<div class="clear"></div>     /*添加一个div*/        <div id="test3"></div>        <div id="test4"></div></div>

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.