reduce image size css
.container {
width: 200px;
height: 120px;
}
/* Resize images */
.container img {
width: 100%;
height: auto;
}
reduce image size css
.container {
width: 200px;
height: 120px;
}
/* Resize images */
.container img {
width: 100%;
height: auto;
}
html css how to arrange images of different sizes
.flex-container {
flex-flow: row;
justify-content: space-between;
align-items: flex-start; /* should align items to the top of your flex row if they don't reach 100px in height */
}
.inner-image {
max-height: 100px;
}
.inner-image.portrait {
height: 200px;
width: 100px;
}
.inner-image.landscape {
height: 100px;
width: 200px;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us