我有这样的代码:
<body>
<div class="parent">
<div class="children">
Some content here
</div>
</div>
</body>
这个CSS:
body {width:100%;height:100%}
.parent{background-color: grey;}
.children{width: 90%; text-align: justify;}
我想让高度children
等于宽度parent
。不幸的是 - 我不知道为什么。我尝试在 Internet 中查找,尝试了不同的解决方案,例如children{width: 90%; text-align: justify;height: 100%;}
,但它们不起作用。我知道我可以使用 table 而不是第二个 div,但是这个网站不会在较小的设备上响应,这对我来说非常重要。有什么建议么?