在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
文本阴影介绍
text-shadow: 1px 2px 3px red ,1px 2px 6px rebeccapurple; 文本阴影实践 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>文本阴影</title> <style> div{ font-size: 60px; color: seagreen; text-shadow: 1px 2px 3px red; } </style> </head> <body> <div>微笑是最初的信仰,加油。</div> </body> </html> 元素阴影介绍 在
元素阴影实践 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>元素阴影</title> <style> div{ width: 100px; height: 100px; border: 2px solid red; box-shadow: 3px 6px 8px darkblue ,4px 8px 6px rebeccapurple inset; } </style> </head> <body> <div>微笑是最初的信仰,加油。</div> </body> </html> 总结 以上所述是小编给大家介绍的CSS中使用文本阴影与元素阴影效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对极客世界网站的支持! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论