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 中拥有 660 像素的普通文本宽度,并且文本之间的图像比文本更宽(最大宽度:1000 像素)。
我该如何处理?
您可以为图像提供负的左右边距。但是,为了工作,它们不应该是max-width,而只是width:
max-width
width
.container { width: 660px; } img { width: 1000px; margin-left: -170px; margin-right: -170px; }
另一种选择是使用网格系统和一个新的.row或任何您的网格系统为每个图像调用的网格系统,其列比用于文本的列宽。
.row