次のようなコードがあります。
<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
。残念ながら、理由はわかりません。インターネットで調べてみたり、 のようなさまざまな解決策を試したりしましchildren{width: 90%; text-align: justify;height: 100%;}
たが、うまくいきません。この 2 番目の div の代わりにテーブルを使用できることはわかっていますが、この Web サイトは小さいデバイスでは応答しません。これは私にとって非常に重要です。助言がありますか?