Maison >interface Web >tutoriel CSS >Ajouter des ombres aux éléments en utilisant CSS

Ajouter des ombres aux éléments en utilisant CSS

王林
王林avant
2023-08-27 16:53:021414parcourir

使用 CSS 为元素添加阴影

Utilisez la propriété CSS box-shadow pour ajouter une ombre aux éléments à l'aide de CSS. Vous pouvez essayer d'exécuter le code suivant pour implémenter la propriété box-shadow :

Exemple

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         h2 {
            box-shadow: 10px 10px;
            height: 50px;
            background-color: yellow;
         }
      </style>
   </head>
   <body>
      <h2>Heading Two</h2>
      <p>Above heading has shadow.<p>
   </body>
</html>

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer