我在Firefox控制台和节点中都观察到以下行为,并且无法想到解释。你能解释一下为什么会这样吗?我实际上期望语法错误。字符串或数组也会出现相同的行为。
<style>
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.fixed-background {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
.myimg {
height: inherit;
}
</style>
<html>
<body>
<div class="fixed-background">
<img src="public/dbs/images/1.jpg" class="myimg" />
</div>
</body>
</html>