+ 1
I need little help to correct my code.
I made this code . I want that the picture should float over the text. In present condition the pic is floating below the text. If it is possible then please guide me. The code is copied below:: https://code.sololearn.com/WtbzFXF8HAK3/?ref=app https://code.sololearn.com/WtbzFXF8HAK3/?ref=app https://code.sololearn.com/WtbzFXF8HAK3/?ref=app
2 ответов
+ 3
One way would be if you give a bigger z-index to the images, like
.b{
z-index:3;
}
Also, making the text opacity 0.25 looks nice too.
0
Thanks , it helped me to correct the code.