Okay, I'll asume this is about the boxes below the purple boxes...
This CSS moves .type over the image and positions it top right* The position on div.title is needed for position: absolute to work on .title .type.
** top and right is the location of the absolute position. You can use any number, including negatives.
*** To make coding easier use different classnames for different elements, not .title for div and a.
https://www.w3schools.com/Css/css_positioning.asp
This CSS moves .type over the image and positions it top right
Code:
div.title { position: relatie;}.title .type { position: absolute; right: 0; top: 20px;}
** top and right is the location of the absolute position. You can use any number, including negatives.
*** To make coding easier use different classnames for different elements, not .title for div and a.
https://www.w3schools.com/Css/css_positioning.asp
Statistics: Posted by Mr. Wimpy — Mon Sep 02, 2024 11:15 am