How to force parent div to expand by child div width/padding/margin/box?

后端 未结 3 1146
生来不讨喜
生来不讨喜 2020-12-28 14:52

I want to expand div parent with child div but I don\'t know if that\'s possible and how to do it.

\"enter

3条回答
  •  抹茶落季
    2020-12-28 14:56

    Your problem is this:

    div.two {
            background-color: green;
            width: 120%;
    }
    

    You are telling the child to be 120% the width of the parent, which is to say, the entire width plus 20% more. Make it 100% and you should get the expected result..

提交回复
热议问题