Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add padding to a single div

How can I add padding to the top of a single div? Is there a way to do it without modifying the .css file? I am using Bootstrap and there is no space between the carousel and the first div. I tried adding padding to the carousel, but the color of the left and right chevron overlap the padding, and this is not the look I want. I want a true white space between the two.

like image 439
jsan Avatar asked Apr 16 '15 18:04

jsan


1 Answers

Try <div style="padding-top: 10px;"> :)

like image 155
Jørgen Avatar answered Oct 13 '22 02:10

Jørgen