[Solved] One div extends into another div [closed]
it seems to me like a float issue. Ensure that you clear the base of a div that contains floated elements. <div> <p>floated left element</p> <p> also floated left element</p> <p> some text </p> <div style=”clear:both;”></div> </div> 2 solved One div extends into another div [closed]