I have a flipbook page and am looking to make it look like an actual book. E.g. this flipbook example I found online:
Anyone knows how can the shadows on the outside and the ones on the inside can be achieved?
I have a flipbook page and am looking to make it look like an actual book. E.g. this flipbook example I found online:
Anyone knows how can the shadows on the outside and the ones on the inside can be achieved?
For outside shadow you can use: box-shadow:15px -2px 12px 13px #dedbdb;
For inside shadow you can use: box-shadow: inset 15px -2px 19px 0px #dedbdb;
For both( the same time): box-shadow: inset 15px -2px 19px 0px #dedbdb, 15px -2px 12px 13px #dedbdb;
Adjust the shadow according to your choice