Reputation: 526
Is positioning all the div
s in a page a good technique?
div { position:relative; }
Upvotes: 0
Views: 47
Reputation: 943143
No. It establishes positioning contexts that you don't need and may interfere with other things you may do.
Upvotes: 3