使用父尺寸作为图像属性

时间:2018-07-26 12:33:34

标签: jquery css

以下jQuery可以确定div的大小

<div>
  <script>
    var box = document.querySelector('div');
    // width and height in pixels, including padding and border
    // Corresponds to jQuery outerWidth(), outerHeight()
    var width = box.offsetWidth;
    var height = box.offsetHeight;
  </script>
  <img src='https://s3-us-west-2.amazonaws.com/gpi/haley-phelps-433522.jpg' width='' height=''>
</div>

假设图片的长宽比与div相同,那么如何调用width和height变量来设置子图片的尺寸

1 个答案:

答案 0 :(得分:1)

通过这种方式,图像会使用其父级的所有空间。

<div style="width: 640px; height: 480px;">
  <img src='https://loremflickr.com/320/240' style="width: 100%">
</div>