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

CSS Bootstrap 4 Basics (Retired) Using Bootstrap Components Building a Navbar

Gaurav Jain
PLUS
Gaurav Jain
Courses Plus Student 242 Points

cant give the margin at top and bottom

want to add margin to my images in but i cant add using bootstrap method ,,, i am using phpstorm not the workspace

1 Answer

Ryan M
Ryan M
16,320 Points
img.yourclass {
    margin-top: 10px;
    margin-bottom: 20px;
}

or shorthand if top and bottom are the same (first value) and left and right are the same (second value)

img.yourclass {
    margin: 20px 0;
}