0
イメージを下の次のdivにオーバーラップさせる方法を教えてください。イメージをその下の次のdivにオーバーラップするにはどうすればよいですか?
私の説明がわからない場合、これは私が欲しい機能です。 click here
この は私が持っているもので、これまで
HTML:
<p>overflow:hidden</p>
<div class="hidden">You can use the overflow property when you want to have better control of the layout. The default value is visible. <img src="https://vetstreet.brightspotcdn.com/dims4/default/8fe930e/2147483647/crop/0x0%2B0%2B0/resize/645x380/quality/90/?url=https%3A%2F%2Fvetstreet-brightspot.s3.amazonaws.com%2F57%2Ff65100a80811e0a0d50050568d634f%2Ffile%2FStaffordshire-Bull-Terrier-3-645mk062811.jpg" alt="Image result for dogs staffordshire terrier"/></div>
CSS:あなたが理解し、より良い必要する必要が
div.hidden {
background-color: #00FF00;
width: 100%;
height: 100px;
overflow: hidden;
}
をチェックアウトしてください。 [このチュートリアル](https://www.w3schools.com/cssref/pr_class_position.asp)では、cssで絶対配置を使用する方法を示します。 – mangotang
@mangotang画像に絶対位置を設定しますか? –