HTML Element Style How to - Add shadow for image








Question

We would like to know how to add shadow for image.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
img {<!--  w ww . j  a va2 s. co m-->
  box-shadow: 10px 10px 10px #000;
}
</style>
</head>
<body>
  <img src="https://placehold.it/200x200">
</body>
</html>

The code above is rendered as follows: