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 :
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!