2017-05-04 1 views
0

dies ist meine Homepage http://www.noor-azmi.com/element/company.htmlBootstrap Polsterung BG Farbe

Wie Sie sehen können, gibt es zwei graue Kästen an der Spitze. Ich will die Lücke nicht zwischen ihnen. Ich möchte, dass es in 1 Rechteckbox kombiniert wird.

Sie sind beide in verschiedenen Spalten der linke ist col-8 und der rechte ist col-4. Wenn ich im Browser nachschlage, scheint es, dass es zwischen ihnen jeweils eine 15px Auffüllung gibt.

Ich bin ok mit der Polsterung, aber kann die Polsterung auch die gleiche BG-Farbe haben? Dann wird das das Problem lösen. Danke

+0

Polsterung zeigt immer die gleiche bg-color –

+0

Was Sie tun können, ist eine Zeile hinzufügen und den gesamten Inhalt für die grauer Teil aus den Spalten und fügen Sie es in col-md-12 – RemyaJ

+0

verwenden Sie diese beiden Spalten in einem "col-md-12" und mit einer weiteren Klasse hinzufügen und überschreiben das Auffüllen von internen col-md. Gib diesem col-md-12 div eine Farbe (benutze eine andere Klasse für bg color) – Phantom

Antwort

0

Trennen Sie graues Teil in eine andere Reihe und Sie sind gut zu gehen.

<div class="row"> 
     <div class="our_company col-sm-8"> 
          <h2>Our Company</h2><br> 

          <p>As the name indicates, Element Design Studio is a boutique design studio that provides landscape master planning and full serviced landscape architecture services for hotels, resorts, residential developments, mixed-use projects and golf course landscapes. Headquartered in Singapore, Element was co-founded by Gregory Kunak in 2011 based on simple and straightforward fundamentals; to provide Clients with the highest quality design services.<br><br> 
        Since 2011, Element has provided design services for a vast amount of projects located in 16 countries, consisting of Bangladesh, Egypt, Guinea, India, Indonesia, Laos, Kenya, Korea, Malaysia, Mauritius, Nepal, Saudi Arabia, Seychelles, Singapore, Sri Lanka and Vietnam. <br><br> 
           Whether appointed to provide landscape master planning services on a 100 hectare mixed-use development or engaged to provide detailed landscape design services for a hotel, resort or luxury residential condominium, Element takes immense pride with providing the highest quality of design excellence throughout every stage of the project. Above all, it is our fundamental goal to ensure that our Clients achieve a successful landscape product.</p><br> 

          </div><div class="our_leader col-sm-4"> 
         <h2>Our Leadership</h2><br> 

         Gregory Kunak<br> 
         <h3>Managing Director</h3> 
           <img src="image/Gregory-Kunak-Profile.jpg"> 
           <p>After working for 20 years with two of the largest and most prominent landscape architecture firms in the United States and Singapore, Gregory Kunak co-founded Element in 2011.<br><br> Through his career, Gregory has gained extensive design experience on many notable hotels, resorts, residential developments and mixed-use projects throughout the United States, Caribbean, Middle East and majority of Asia. As Managing Director of Element, Gregory is responsible for every aspect of the company.<br><br> As a registered landscape architect, Gregory is responsible for ensuring that each and every project adheres to the most stringent health, safety and welfare standards while striving to achieve design excellence. He is a rollercoaster enthusiast, enjoys the outdoors and horticulture and supports the Pittsburgh Steelers. </p></div> 

     </div>. 
0

die Sie interessieren, Sie benötigen Änderung vornehmen in Ihnen div

HTML-Code:

<div class="row"> 
    <div class="col-md-12 bg-grey"> 
     <div class="col-md-8"> 
     This is col 1 
     </div> 
     <div class="col-md-4"> 
     This is col 2 
     </div> 
    </div> 
</div> 

CSS-Code:

.bg-grey { 
    background-color: grey; 
} 
Verwandte Themen