2
-> I have a layout whose header is fixed at the top.
-> Only that the Section just below is below it and does not follow the same flow(normal)
In this case what is the best way to make the below Section stay below the header?
1) Using position:relative top:px until Section exits below header?
2) Placing an empty div with the same header height before Section?
If both solutions work, there is no better one. But I didn’t quite understand the first option, the
top
should not be positive?– bfavaretto
Yes, travel, it is the custom to use more negative
– ropbla9
@bfavaretto, resalva: The ideal is to use margin-top and not position + coordinate because the position should influence the size of the post header Section. Otherwise everything that comes after the first Section will have to be positioned tb.
– ropbla9
It’s true. Why don’t you take that as an answer? ;)
– bfavaretto
@bfavaretto good idea :)
– ropbla9