#main .thumbBorder {
background-color: #e1e1e1;
padding: 2px;
border: solid 1px #cfcfcf;
margin: 14px;
}
#main .thumbnail {
background-image: url('http://images.idealer1.com/getimage/188/4937261.jpg');
height: 125px;
width: 188px;
}
<div class="thumbBorder">
<div class="thumbnail"> </div>
</div>
让外部div
thumbBorder
紧紧围绕内部div
thumbnail
的正确方法是什么?
现在,外部div
thumbBorder
正在扩展到整个外部内容块的限制。
答案 0 :(得分:3)
使块元素缩小以适合其内容的唯一方法是给它float
。如果您需要这种行为,并且还需要居中,请查看display: inline-block
答案 1 :(得分:0)
float: left;
或
float: right;
或
display: inline;