標準モードとハイブリッドモードでのボックスモデル

5634 ワード

関連情報:http://www.cnblogs.com/cchyao/archive/2010/07/12/1775846.html http://www.runoob.com/css/css-boxmodel.html まとめ:
IE      :
width=(border+padding+content)   
height=(border+padding+content)   

     :
width=content   
height=content   

主に標準モードのボックスモデルに対して学習標準モードの設定要素のwidthは実際にボックスモデルのcontentの幅を設定し、border値とpadding値を含まない.

<html lang="en">
<head>
  <title>pullpage        title>
  <meta charset="utf-8" />

  <link rel="stylesheet" href="css/animate.min.css" />
  <link rel="stylesheet" href="css/jquery.fullPage.css">
head>
<style type="text/css">
    .spe{
      width:200px;
      height:200px;
      line-height:200px;
      background-color: pink;
      margin-bottom: 20px;
      text-align: center;
    }
    .special1{
          padding:20px;
          border:5px solid red;
    }
    .special2{
          padding:20px;
          border:5px solid red;
          box-sizing:border-box;
    }
style>
<body>
    <div class="spe">  border paddingdiv>
    <div class="spe special1"> border paddingdiv>
    <div class="spe special2">border-boxdiv>
body>
html>

标准模式和混杂模式下的盒模型_第1张图片
border-boxのプロパティ标准模式和混杂模式下的盒模型_第2张图片