This is one of the examples in solo.to linktree. I would like to ask how I can use html and css to present it.
I originally planned to use
float:left;
to make the image float so that the border of the text can cut through the image, but in the end I found that the image would only be pushed out by the border. I also tried to find out if there is a similar one Looks like it, but can’t find it
4
Answers
You can do somthing similar to this by using some nested divs like cards and layers
To make containers float above one another try this code
I found solution to your problem. Please go through the code.
Add this code to your HTML & CSS File.
Don’t Forget to run Code Snippet in full page.
My try (with different font and arrow)
You can create an overlapping effect by employing
position: relative
and fine-tuning the image placement through adjustments to the top, bottom, left, or right properties.demo
Stackblitz