背景图片的父元素是什么?

What is the parent element for the background image?

对于background-size,我们可以使用percentage,设置背景图片的宽高占父元素的百分比。现在,如果 html 变成这样:

<section>
    <p>Background-size by percentage.</p>
</section>

并且我为 <p> 设置了背景图片。现在背景图片的父元素是<p>还是<section>?谢谢

父元素是指背景图片的父元素。这是 <p>.

尝试在 <p><section> 上设置不同的宽度,例如 width: 500pxwidth: 1000px

你会得到的。