Search code examples
htmlbox

How put 4 images and title and description side by side in a html box


How put 4 images and title and description side by side in a html box? No link, only text. As shown below:

enter image description here


Solution

  • Flex box is the way to go:

    https://jsfiddle.net/s1mreoe8/1/

    .flex{
      display:flex;
    }
    

    Here is a guide : https://css-tricks.com/snippets/css/a-guide-to-flexbox/