如果父div大小较小,则给出div滚动条

时间:2013-05-29 20:29:25

标签: html css

我有一个固定大小的子div,当液体父div的宽度小于孩子时,我想让孩子保持在父母内部并给孩子滚动条。 jsfiddel

HTML

<div id="parent">
          <div id="child"></div>
</div>

CSS

.child{

   width: 500px;
   height: 400px;

   background-color: green;

}

.parent{

   height: 100%;
   width: 100%;
   background-color: red;
   padding: 50px;
   width: auto;
}

1 个答案:

答案 0 :(得分:1)

overflow: auto;添加到父容器:

.parent{
   height: 100%;
   width: 100%;
   background-color: red;
   padding: 50px;
   width: auto;
   overflow: auto;
}

DEMO