当然业可以动态添加一个div,原理是一样的。
一般是不建议子容器超出父容器的,超出后叫做溢出。是不建议这样的。
例如:
#box{width:500px
background:#000
height:500px
}
#content {
float:left
width:600px
height:600px
background:red
}
给box这个div加了一个overflow:hidden这个属性解决了溢出这个问题
当然业可以动态添加一个div,原理是一样的。
一般是不建议子容器超出父容器的,超出后叫做溢出。是不建议这样的。
例如:
#box{width:500px
background:#000
height:500px
}
#content {
float:left
width:600px
height:600px
background:red
}
给box这个div加了一个overflow:hidden这个属性解决了溢出这个问题