Hello Reader's if you want to make your html webpage to look like 3d image then you can use the code below.
Here in the code css will make the background shadow of div, Which will make it appear in 3d.
Let's see the code:-
-moz-box-shadow: 10px 10px 16px #000000;
-webkit-box-shadow: 10px 10px 16px #000000;
box-shadow: 10px 10px 16px #000000;
you just have to add this css to your div class. An on loading the page you will see a shadow is showing which will make it nice.
0 Comment(s)