我试图将该部分向下移动到div的右侧,包括封条,段落和新闻(即:右边的当前客户,左边的其他所有客户。)
目前,我正在使用60%的div保留左侧的文本。我猜这是内容。我一直试图将“Foo”移到第一列的右侧。
我愚弄了宽度,填充和边距,对齐以及其他一些元素。任何帮助将不胜感激。
谢谢。
哄骗
对于你的班级entry-content
添加以下css:display: flex;
这解决了这个问题。
有关更多详细信息,请查看此帖子:How to place div side by side
关于flex here的更多细节
你需要浮动:在entry-content div中留下两个div:
<div class="entry-content">
<div style="width:60%;float: left;">... more code here ...</div>
<div style="width:33%;float: left;">... more code here ...</div>
</div>