0
How to write below the images?
How we can write below the images and make all images size same?
1 Respuesta
+ 2
What images below?
Did you forget to add more detail to the question? It looks like you wanted to add a list of images or reference some code.
If you just want all img elements on your web page to have the same width and height, you can add this CSS:
img {
width: 100px;
height: 100px;
}