日期:2013-08-08 浏览次数:21126 次
像table一样规划div Ⅰ
下面是我翻译的内容,是依据我对文章的理解意译的,你就别挑哪里翻译的不对了,我的目的只是传达这个CSS技巧
上一篇的问题就是,这个模型对IE来说等同于垃圾,所以基本只能是做来玩玩而已,没有什么实际的用途,如今我要做的就是,让它也能在IE下更好的显示,所以我又做了第二个模型
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>Equal height boxes with CSS, part II </title> <style type="text/css" media="screen,print"> /* Layout rules */ .equal { display:table; border-collapse:separate; } .row { display:table-row; } .row div { display:table-cell; } /* Styling rules to make the example look nicer */ html,body { margin:0; padding:0; color:#000; background:#fff; } body { font:76%/140% "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif; } .equal { margin:10px auto; border-spacing:10px; background:#898B60; width:600px; } .row div { background:#fff; } .row .one { width:200px; } .row .two { width:200px; } .row .three { vertical-align:middle; } .row div h2 { margin:0 0 0.5em 0; padding:0.5em 10px; font-size:1.2em; color:#fff; background:#595B30; } .row div p { font-size:0.94em; margin:0.5em 0; padding:0 10px; } #labfooter { text-align:center; clear:both; } </style><!-- Some rules to make IE/Win display the boxes with variable height. --><!--[if IE]> <style type="text/css" media="all">.equal, .row { display:block;}.row { padding:10px;}.row div { display:block; float:left; margin:0;}.row .two { margin-left:10px;}.row .three { width:160px; float:right;}.ieclearer { float:none; clear:both; height:0; padding:0; font-size: 2px; line-height:0;} </style><![endif]--></head><body><div class="equal"> <div class="row"> <div class="one"> <h2>This is a box</h2> 这个容器含有较少的内容,但是他的高低却能和较多内容的容器等高</div> <div class="two"> <h2>This is another box</h2> <p>这个盒子含有比另外一个更多的内容. 如果所有的容易都作为单元格显示, 那么它的高度将是所有容易的高度. 它如今想表格一样显示, 但是他不是一个表格.</p> <p>另外, display:table, display:table-row and display:table-cell 使的div显示出像表格一样的效果,可是蹩脚的是他不能正常运转在你所熟悉的浏览器IE上,但是它却可以顺利运转于像 Mozilla, Opera, Safari, Firefox, OmniWeb, Camino, and Netscape.这些浏览器上面.然后IE得到供选择CSS,规则防止它完全地毁坏这种规划。</p> <p>了解更多细节: <a href="http://www.jluvip.com/blog/article.asp?id=149">Equal height boxes with CSS</a>.</p> </div> <div class="three"> <p>这也是个含有较少内容的容器.而且内容是垂直居中显示的</p> </div> <!--[if IE]> <div class="ieclearer"></div> <![endif]--> </div></div><div id="labfooter"> <a href="http://www.jluvip.com">My blog</a> | 这个翻译的页面版权归greengnn所有,转载请注明出处</div></body></html>
[Ctrl+A 全部选择 提示:你可先修正部分代码,再按运转]
xhtml结构类似 第一个模型 的只是添加一个新的div给IE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>Equal height boxes with CSS </title> <style type="text/css" media="screen,print"> /* Layout rules */