1. 程式人生 > >css 父元素設定padding、border、margin的情況下,子元素width100%呈現情況

css 父元素設定padding、border、margin的情況下,子元素width100%呈現情況

父元素設定width、height、padding、border、margin,子元素設定width:100%;height: auto;呈現情況

<!DOCTYPE html>
<html lang="zh-cmn-hans">
<head>
  <meta charset="utf-8">
  <title>test</title>

  <style>
    html,
    body,
    div {
      margin: 0;
      padding: 0;
    }
    body
{ background-color: yellow; } #imgbox { width: 600px; height: 100px; background-color: red; padding: 10px; border: 2px solid black; margin: 10px; } #image { width: 100%; height: auto; background-color: green; } #txtbox { width
: 600px
; height: 100px; background-color: blue; padding: 10px; border: 2px solid black; margin: 10px; }
#txt { background-color: pink; width: 100%; height: auto; }
</style> </head> <body> <div id="imgbox"> <img id="image"
src="i-7.png"/>
</div> <div id="txtbox"> <p id="txt">Hello World!</p> </div> </body> </html>

這裡寫圖片描述

父元素設定width、height、padding、border、margin,overflow:hidden;子元素設定width:100%;height: auto;呈現情況

<!DOCTYPE html>
<html lang="zh-cmn-hans">
<head>
  <meta charset="utf-8">
  <title>test</title>

  <style>
    html,
    body,
    div {
      margin: 0;
      padding: 0;
    }
    body {
      background-color: yellow;
    }
    #imgbox {
      width: 600px;
      height: 100px;
      background-color: red;
      padding: 10px;
      border: 2px solid black;
      margin: 10px;
      overflow: hidden;
    }
    #image {
      width: 100%;
      height: auto;
      background-color: green;
    }

    #txtbox {
      width: 600px;
      height: 100px;
      background-color: blue;
      padding: 10px;
      border: 2px solid black;
      margin: 10px;
    }
    #txt {
      background-color: pink;
      width: 100%;
      height: auto;
    }
  </style>
</head>
<body>
  <div id="imgbox">
    <img id="image" src="i-7.png"/>
  </div>

  <div id="txtbox">
    <p id="txt">Hello World!</p>
  </div>
</body>
</html>

這裡寫圖片描述

<!DOCTYPE html>
<html lang="zh-cmn-hans">
<head>
  <meta charset="utf-8">
  <title>test</title>

  <style>
    html,
    body,
    div {
      margin: 0;
      padding: 0;
    }
    body {
      background-color: yellow;
    }
    #imgbox {
      width: 600px;
      height: 100px;
      background-color: red;
      padding: 10px;
      border: 2px solid black;
      margin: 10px;
      overflow: hidden;
    }
    #image {
      width: 100%;
      height: auto;
      background-color: green;
    }

    #txtbox {
      width: 600px;
      height: 100px;
      background-color: blue;
      padding: 10px;
      border: 2px solid black;
      margin: 10px;
    }
    #txt {
      background-color: pink;
      width: 100%;
      height: auto;
    }
  </style>
</head>
<body>
  <div id="imgbox">
    <img id="image" src="i-7.png"/>
  </div>

  <div id="txtbox">
    <p id="txt">Hello World!</p>
  </div>

  <script>
    var element = document.getElementById("imgbox");
    var width = window.getComputedStyle(element,null).width;
    alert(width);
  </script>

</body>
</html>

這裡寫圖片描述