Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经制作了一个情况的图像,我希望它能让事情更容易理解。
如您所见,一个 div 中有两个 div。当我调整屏幕大小时,右侧 div 内的文本进入徽标(左侧 div)。我想要的是文本(和更右边的 div)不会进入徽标。两个 div 都是浮动的,每个都在其对应的一侧。你对我有什么建议吗?
提前致谢
在我看来这是一个float问题。确保清除包含浮动元素的 div 的基础。
float
<div> <p>floated left element</p> <p> also floated left element</p> <p> some text </p> <div style="clear:both;"></div> </div>