How to create a 3 column image grid using html and css? [closed]
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 2 years ago . I am interested to know what is the best practice to create an image grid similar to the image attached using HTML and CSS. Thanks. 回答1: You would use CSS flex container like so. Here is sample CSS: .flex-container { flex-direction:row; display: -webkit-flex; display: flex;