wawanopoulos
wawanopoulos

Reputation: 9804

Tips to position some div with image in my page

I would like to create a webpage which contains images like this :

enter image description here

What is the best way to position each <div> in my page ? Use column ? Or a position:fixed ?

Upvotes: 3

Views: 61

Answers (1)

Mario Sanchez Maselli
Mario Sanchez Maselli

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

Related Questions