I have problem with div
in my section
i want it to follow the picture image (to be in line with it ) like this:
But instead it just stays on the left side like this:
I tried changing some styles and div position inside my HTML but nothing seems to work My code is available at: https://codepen.io/wodosharlatan/pen/jOpLVBQ?editors=1100 Any help is appreciated, but please try to make it as responsive as possible. Thanks
Based on your codepen, just change your image width from 256px
to 100%
.
CSS like this:
.portfolio__img {
width : 100% ; /* change width */
height : auto ; /* add height auto */
border-radius : 0.5rem ;
justify-self : center ;
}