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.
我正在尝试使我的 wordpress HTML 布局如下:
IMG paragraph 1 paragraph 1 IMG paragraph 1 .. IMG IMG paragraph 2...
其中所有 IMG 指的是单个图像,第二段从图像下方开始。那可能吗?
是的,将您的图像向左浮动,并将第 2 段设置为清除。在您的 CSS 中:
.left_img { float: left; } .clear { clear: both; }
将图像上的类设置为left_img,并将段落上的类设置为clear。显然,选择适合你想要做的类名......这只是一个例子。
left_img
clear