JSfiddleを見て.caption
、div を class の下部に配置する方法を教えてください.wrapper
。
position:absolute; bottom:5px;
既にルールを追加しようとしまし.caption
たが、キャプション div が.wrapper
!の外に配置されました。
<div class="wrapper">
<div class="caption">Test</div>
<div class="main"></div>
</div>
これがcssルールです
.wrapper{
height:300px;
width:300px;
background-color:yellow;
}
.main{
height:100%;
width:100%;
}
.caption{
height:10%;
width:100%;
background: rgb(0, 0, 0) ; opacity: 0.7;>
margin-bottom:5px;
color:white;
}