Как сделать div с фоновым изображением отзывчивым? - PullRequest
0 голосов
/ 01 июня 2018

Я хочу сделать следующую часть моего сайта отзывчивой.

enter image description here

Я пытался сделать одно изображение Div отзывчивым, но оно не сработало.

<div class="row">
                   <div class="col-sm-4 main_service main_auto">
                       <h4>
                        <a title="Automotive" href="searchcat1.aspx?cat=Automotive">Automotive</a></h4>
                    <p>
                        <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Auto Spare Parts">Auto 
                        Spare Parts</a>
                         <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Commercial Vehicles">
                        Commercial Vehicles</a> 
                         <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Oil value Lubricants">
                        Oil value Lubricants</a>
                          <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Tyres and Batteries">
                        Tyres and Batteries</a> 
                          <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Automotive Tools">
                        Automotive Tools</a> 
                          <span class="right"><a href="searchcat1.aspx?cat=Automotive">more ...</a></span></p>
                   </div>
               </div>

Я новичок в Bootstrap.

1 Ответ

0 голосов
/ 01 июня 2018
<div class="row">
                   <div class="col-sm-4 col-xs-12 main_service main_auto">
                       <h4>
                        <a title="Automotive" href="searchcat1.aspx?cat=Automotive">Automotive</a></h4>
                    <p>
                        <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Auto Spare Parts">Auto 
                        Spare Parts</a>
                         <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Commercial Vehicles">
                        Commercial Vehicles</a> 
                         <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Oil value Lubricants">
                        Oil value Lubricants</a>
                          <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Tyres and Batteries">
                        Tyres and Batteries</a> 
                          <a title="" href="searchsubcat.aspx?cat=Automotive&subcat=Automotive Tools">
                        Automotive Tools</a> 
                          <span class="right"><a href="searchcat1.aspx?cat=Automotive">more ...</a></span></p>
                   </div>
               </div>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...