使用 CSS box-shadow 属性为使用 CSS 的元素添加阴影。您可以尝试运行以下代码来实现 box-shadow 属性:
现场演示
<!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>
以上是使用 CSS 为元素添加阴影的详细内容。更多信息请关注PHP中文网其他相关文章!