I'm building a responsive layout that has boxes in a grid at a certain screen size.
This is what it looks like:
What I'm trying to do is add some top margin to box 3 to push it down to produce the desired effect:
- I don't want to apply a class to box 3
- I can't increase the width of the heading across because it resides in the box 4 container
- I wish I could target "the element before" with CSS but that doesn't seem possible
- The boxes are currently floated, and I can't use
inline-block
due to responsive spacing issues