为了账号安全,请及时绑定邮箱和手机立即绑定

float与display属性

这里有一段菜鸟才会写出的代码:

html:

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<style>

 #father{

width:800px;height:100%;margin:0 auto;padding:10px; background-color:blue;display:table-cell;

}

#left{

float:left; background-color:pink;}

#right{

overflow:hidden;background-color:gray;}

</style>

</head>


<body>

<div id="father">father

<div id="left" >left</div>

<div id="right" >right</div>

</div>


</body>

</html>

由于本人是菜鸟,所以就把完整代码贴上来了。注意到上面的display:table-cell了吗?一旦我加上这个属性,我设置的自动居中属性就会失效(margin:0 auto)!换成inline-block也是一样的。这是什么鬼?当然啦,我本意是设计一个左右大小相互适应的布局的……


正在回答

1 回答

  1. id为father的div,原为块状元素(display:block;),独占一行。当{display:table-cell}或{display:inline-block;}时,#father变为行内元素(display:inline-block;),不能独占一行,{margin:0 auto;}就失效了。

  2. 设计一个左右大小相互适应的布局,css可以参考如下:


#father{ width:80%; height:600px; margin:0 auto}

#left{ width:20%; height:600px; background:#ccc; float:left}

#right{ width:80%; height:600px; background:#FCC; float:right}

3. 建议看一下课程:“如何用CSS进行网页布局”之类的。

0 回复 有任何疑惑可以回复我~
#1

朝闻道1991

这个不算是相互自适应的吧,这个是定宽了啊,直接20%、80%写死了啊
2016-11-12 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
CSS深入理解之float浮动
  • 参与学习       75969    人
  • 解答问题       461    个

课程将会从感性的认识的角度讲解CSS float属性,浮动的前世今生

进入课程

float与display属性

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信