0 votes
in SoSci Survey (English) by s128325 (120 points)

Hi, how do I arrange images in a triangle presentation? Like at each tip of an imagined triangle, I want to display an image.

1 Answer

+1 vote
by SoSci Survey (304k points)

If you do not have to worry about respondent using a smartphone display (small), then you may use the HTML flexbox feature.

<div style="display: flex; flex-wrap: wrap; justify-content: space-between;">
  <img src="filename.jpg">
  <img src="filename.jpg">
</div>
<div style="text-align: center">
  <img src="filename.jpg">
</div>

Other methods like absolute positioning or HTML tables could be used as well.

Willkommen im Online-Support von SoSci Survey.

Hier bekommen Sie schnelle und fundierte Antworten von anderen Projektleitern und direkt von SoSci Survey.

→ Eine Frage stellen


Welcome to the SoSci Survey online support.

Simply ask a question to quickly get answers from other professionals, and directly from SoSci Survey.

→ Ask a Question

...