为Bootstrap完成新手。我正在使用Bootstrap V3创建响应式单页网站。我有所有元素工作,但我不能得到标题响应大小调整。 CSS如下:
.header-image {
background: url(../images/header_test.jpg) no-repeat;
background-position: top;
height: auto;
display: block;
width: 100%;
text-align: center;
非常感谢任何帮助!
由于 安德鲁
答案 0 :(得分:0)
Bootstrap 3有一个用于响应式图像的内置类.img-responsive
。
<img src="..." class="img-responsive" alt="Responsive image">