可以在Bootstrap中使用类行来设置图像宽度100%吗? 示例:
<div class="row"> and not
.image100 {
width: 100%;
}
答案 0 :(得分:0)
Bootstrap会自动为您完成此操作。尝试:
<div class="row"> <div class="col-md-12"> <img src="bigImage.ext"> </div> </div>
您需要做的只是提供足够大的图像,Bootstrap应该自动将其完全展开以覆盖行。