CSS COURSE • LESSON

🖼️ CSS Images

Master CSS and create modern responsive websites with EDUHUB CODE HUB.

CSS Images

CSS allows you to style and control images.

Rounded Images


img {

border-radius:50%;

}

Image Width



img {

width:100%;

height:auto;

}

Image Opacity



img:hover {

opacity:0.7;

}