css – 当firefox缩放时如何防止浮动布局包装

前端之家收集整理的这篇文章主要介绍了css – 当firefox缩放时如何防止浮动布局包装前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给出以下HTML。它显示两列:#left,#right。两者均为固定宽度,并且具有1px边框。宽度和边框等于上部容器的大小:#wrap。

当我缩小Firefox 3.5.2通过按Ctrl – 列获得包装(demo)。

如何防止这种情况?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <Meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Test</title>
    <style type="text/css">
      div           {float:left}
      #wrap         {width:960px}
      #left,#right {width:478px;border:1px solid}
    </style>
  </head>
  <body>
    <div id="wrap">
      <div id="left">
        left
      </div>
      <div id="right">
        right
      </div>
    </div>
  </body>
</html>

解决方法

尝试切换到不同的 box model,如下所示:
#left,#right 
{ 
  width:480px;
  border:1px solid;
  Box-sizing: border-Box;

  /* and for older/other browsers: */
  -moz-Box-sizing: border-Box;
  -ms-Box-sizing: border-Box;
  -webkit-Box-sizing: border-Box
}
原文链接:https://www.f2er.com/css/218442.html

猜你在找的CSS相关文章