Issue
How to set black color bottom of the image and in that set text ?
Solution
You can use something like this
https://codepen.io/bartassmo/pen/wvyJORZ
or make it with img inside div, and position:
.item {
position: relative;
}
.item__content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
Answered By - bartassmo
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.