0
How can i resize an image
image resize
8 Answers
+ 4
Or add
img{
display:block;
transform:scale(2,2);
}
+ 2
resize where?
#trainTelepathyWithSololearn
+ 2
/* resize to fit the screen */
img {
display: block;
width: 100%;
height: auto;
}
+ 1
set width & height of the image in the css.
EXAMPLE:
img {
width:300px;
height:300px;
}
0
in the browser
0
just set height and width in css for this image
0
ok
0
ok thx