box-shadow,text-shadow 向右看齐 2021-12-16 11:21 180阅读 0赞 box-shadow:inset 30px 40px 20px \#f00; 如上实例,总共五个参数,其中第一个代表阴影是向内阴影还是向外阴影,第二个参数代表向右(从左向右)的偏移量,第三个参数代表向下的偏移量,第四个参数代表阴影的距离,越大越模糊,第五个代表阴影的颜色,截图如下 ![Image 1][] 如果去掉第一个参数,那么是这样的 ![Image 1][] text-shadow: .3px 4px 2px \#f00; 这个和上面的类似,只是没有第一个参数 ![Image 1][] 完整代码 <html> <head> <meta name="generator" content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39" /> <style type="text/css"> .box1{ box-shadow: 30px 40px 20px #f00; border:1px solid blue; width:200px; height:200px; margin:200px; } .box2{ text-shadow: .3px 4px 2px #f00; border:1px solid blue; width:200px; height:200px; margin:200px; font-size:50px; } </style> <title></title> </head> <body> <div class=box1></div> <div class=box2>fsadfsadfsadf</div> </body> </html> 转载于:https://www.cnblogs.com/benchan2015/p/4739756.html [Image 1]:
还没有评论,来说两句吧...