首先你需要给 col 一个类名或 id 例如<div class="col-xs-3 myImage">您可以使用下面的示例将图像放置在容器本身中。在你的CSS中,你首先需要确保图像包含在列中,因此设置最大宽度参数。.myImage{display:block;max-width:100%; // change this is you need it to be smallerbackground-image:url('yourimagefoldername/imagefilename.jpg');background-size: cover; // contain might suite you betterbackground-position:center; // this can be change to top, bottom or wherever}这几乎就是您需要做的全部事情。