I'm struggling with positioning HTML elements on my websites. Despite knowing it's a simple issue, I find myself facing this problem with every website I create, as I am still new to web development.
.artstation_b{
position: absolute;
left: 45%;
top: 395%;
}
.behance_b{
position: absolute;
left: 49%;
top: 394.5%;
}
.instagram_b{
position: absolute;
left: 53%;
top: 395%;
}
My method of laying out images involves setting the position to absolute, as it helps me achieve the desired results. Using absolute positioning is necessary because I am placing images on top of each other. Without absolute positioning, the images end up either under or next to each other.
While my layout looks good on my 1080p screen, it becomes a mess when viewed on another 1080p screen with a different size.