我有div和img。如何使用img扩展此div?
cons :: a -> [a] -> [a]
cons = (:)
这是我的.scss:
<div class="container-fluid banner">
<img />
<div class="row text-center banner__div col-xs-12">
</div>
<div class="row text-center banner__slider col-xs-12">
</div>
已经尝试过显示:内联块 - 无法正常工作
答案 0 :(得分:0)
.wrapper img {
width: 100%;
height: 100%;
}
.wrapper {
width: desired width;
height: desired height;
}
编辑:结束然后你这样说:
<div class="wrapper"><img /></div>