How would i put images under an <a> tag in css? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How would i put images under an <a> tag in css?

So i'm trying to put an image under an a tag. So i have an <a> tag called "Project_1". Under that tag i want to put an image. But i have 4 projects. So i have: Project_1 Project_2 Project_3 Project_3 And i need: Project_1 Project_2 Project_3 Project_3 img img img img Notice: The pics don't touch eachother, there's white space in between. some html code i have: https://code.sololearn.com/WUT7ZBNfG4nd Thank you Jordi

3rd Dec 2020, 2:58 PM
Jordi
Jordi - avatar
3 Answers
0
make a container class (div) within the container , create 4 item class (div) within each item add the img+a style the item class with: display:flex; flex-direction:column;
4th Dec 2020, 12:28 AM
Logomonic Learning
Logomonic Learning - avatar
0
i haven't tried that yet, but it seems workable...imma try it rn. thanks
4th Dec 2020, 10:31 AM
Jordi
Jordi - avatar
0
Correction. Since you want projects together and images together, its better if you make one container class for project, and another container for images. In the styljng, add width and height to the containers and: display: grid; Grid-template-columns: 1fr 1fr; Grid-template-rows: 1fr 1fr; If you want space between the images use the following style in the container class: Grid-gap:20px;
4th Dec 2020, 1:50 PM
Logomonic Learning
Logomonic Learning - avatar