我是引导程序的新手,现在创建一个包含一行和两列的网站。
在我将图像添加到列之前,一切都做得很好。添加图像后,该列将中断到下一行。谁能告诉我出了什么问题?
请看一下这张图片:
<div class="row">
<div class="product-info col-sm-6" style="margin-left:-15px;">
<?= $this->Html->image($product->name.'.jpg',['class'=>'img-responsive') ?>
</div>
<div class="product-info col-sm-6 offset-sm-6">
<span><?= $product->category->category ?></span><br>
<span><?= $product->name ?></span><br>
<span>¥<?= $product->price ?></span><br>
</div>
我刚刚尝试使用margin-left:-15px;,但没有任何帮助。
万千封印