I want to know how can I make this effect:
.
That white shadow on right.
I want to know how can I make this effect:
.
That white shadow on right.
Use box-shadow
(https://developer.mozilla.org/en/docs/Web/CSS/box-shadow)
Here's an example for the desired effect:
div {
width: 300px;
height: 100px;
background-color: lightgray;
box-shadow: 10px 10px 5px #888888;
}
<div></div>