I have 2 containers, one grey, one white. I\'d like to place an image (this will be a triangle down) to the very top of the white background and center it horizontally. How coul
Update your .triangle class to this. You need to make it display as block. And add bottom margin to add space between title and the image.
.triangle { margin: auto; margin-top: -76px; display: block; margin-bottom: 30px; }