+ 2
Why no size
7 Answers
+ 2
May be it help you-
https://code.sololearn.com/WJh7rx1cRTVp/?ref=app
+ 3
RocketLover ,
To make the image smaller, you can use the 'height' and 'width' attributes in the `img` tag.
Like this....
method 1 without CSS :-
<img src = "https://api2.sololearn.com/v2/certificates/CC-UKIVWCDS/image/png"width="50%" height="50%">
method 2 with CSS:-
add this in css section..
img{
display:flex;
height:100%;
width:100%;
}
+ 3
Set the width to 100%
img {
width: 100%;
}
+ 2
Set the width and height to 100% and it will cover the document after it is loaded....
img {
width: 100%;
height: 100%;
}
+ 2
set height and width to make image smaller
+ 2
Koli You sent your code yourself
+ 1
How so I make it smaller