Your tutorials have really helped me with my work thank you. I want to know how to style video for mobile?
@adilbek.ermekov3 жыл бұрын
love your tutorials, man!
@CodeWithMMB11 ай бұрын
learn html,css, anywhere and watch this video for proficiency excellent
@adilbek.ermekov3 жыл бұрын
was it really neccessary to make two separate ::before lines? you coul've just made a straight line and move it back with z-index: -1;
@GTCoding3 жыл бұрын
I created two different before selectors so that even if the content of the second (or first) testimonial card is much larger, there shouldn't be any problems with the height of the background element. If you just add a single before selector for one of the testimonial cards, then you won't be able to predict the height of the background element. Now, with this approach, even if we have more lines of text in the content, the before selector will have the correct height.