Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Sharon Roth
7,754 PointsBootstrap card columns
Hi everyone, I am trying to make a simple two column card layout within my portfolio site using Bootstrap. Below is my HTML. Any suggestions are appreciated!
<div class="row">
<div class="card card-inverse col-m-6">
<img class="card-img img-fluid" src="img/Hold_Image.jpg" alt="Project1">
<div class="card-img-overlay">
<h4 class="card-title">Project1</h4>
<p class="card-text bottom-align-text">This is a project in which I did xyz and demonstrates abc skills. Key challenges were 123.</p>
</div>
</div>
<div class="card card-inverse col-m-6">
<img class="card-img img-fluid" src="img/Hold_Image.jpg" alt="Project2">
<div class="card-img-overlay">
<h4 class="card-title">Project1</h4>
<p class="card-text bottom-align-text">This is a project in which I did xyz and demonstrates abc skills. Key challenges were 123.</p>
</div>
</div>
<div class="card card-inverse col-m-6">
<img class="card-img img-fluid" src="img/Hold_Image.jpg" alt="Project3">
<div class="card-img-overlay">
<h4 class="card-title">Project1</h4>
<p class="card-text bottom-align-text">This is a project in which I did xyz and demonstrates abc skills. Key challenges were 123.</p>
</div>
</div>
</div>
</div>