I’m a bit new to frontend development. How can I make a part of the slider slightly transparent, as in the layout? there is a slider on the right, the second slide that is visible is slightly transparent
How to write styles for a slider in this case?
Anastasiya Haiduk is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2
Have a look at:
https://www.w3schools.com/cssref/css3_pr_opacity.php
In CSS add the opacity property to the HTML element that you want to make transparent. Like so:
div {
opacity: 0.5;
}