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.
我目前有一个向左浮动的图像,以及一个位于其右侧的文本块。该文本块不是当前浮动的,它只是出现在 HTML 中的图像之后。因此,随着它变得更长,它最终会在图像下方向左移动以继续。
我怎样才能使文本块始终保持在图像的右侧,因此图像和文本的行为就像两个并排的列?请记住,除了这两个元素之外,我无法做任何事情。我无法在它们周围添加包装器。我可以在之前、之间或之后添加元素。但不在身边。
谢谢。
p { width:1000px; display: table-row; }
固定答案
也只是浮动文本。:)
http://jsfiddle.net/Hs7pN/
#image { background-color: #09C; float: left; height: 200px; width: 200px; } #text { float: left; width: 400px; }
如果可能,尝试设置固定宽度并对齐您的文本