h1と内側のボックスの両方を外側のボックスの左上隅に配置したいと思います。2つのボックスをどのように配置して整列させるか?
これは私の試みですが、失敗しました。私はjavascriptの無料のソリューションを探しています。
.outer {
position: absolute;
margin: 50px;
width: 300px;
height: 300px;
background-color: blue;
}
h1 {
position: relative;
top: 0;
left: 0;
}
.inner {
position: relative;
width: 100px;
height: 100px;
top: 0px;
left: 0px;
background-color: red;
}
<div class="outer">
<h1>
some text
</h1>
<div class="inner">
</div>
</div>
私はあなたに 'position:absolute'の使用についての説明が好きです。 –
位置情報の詳細については、https://developer.mozillaをご覧ください。org/en/docs/Web/CSS/positionやcss tricksからは、https://css-tricks.com/almanac/properties/p/position/という非常に参考になります。 –