Reputation: 9804
I would like to create a webpage which contains images like this :
What is the best way to position each <div>
in my page ? Use column ? Or a position:fixed
?
Upvotes: 3
Views: 61
Reputation: 1101
If it's static and you do not care about reponsivness you can use a div with relative position, and inside each picture with a div with absolute position, placing then wherever you want.
Now if you do care about responsivness you can use a plugin-in such as:
Upvotes: 2