|
发表于 2017-4-26 14:34:26
|
显示全部楼层
本帖最后由 shishunfu 于 2017-4-26 17:16 编辑
交作业
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>文字阴影(text - shadow)</title>
- <style type="text/css">
- body{
- background-color: beige;
- }
- h1{
- text-shadow: 8px 8px 3px rgba(0,0,0,.5); /*text-shadow四个参数分别为:x方向上的阴影(水平)位移、y方向上的阴影(垂直)位移、阴影模糊程度、阴影颜色*/
- }
- h2{
- color: #FFF;
- text-shadow:2px 2px 4px #000000;
- }
- </style>
- </head>
- <body>
- <h1>鱼C工作室-SSF</h1>
- <h2>让编程改变世界!<br/>Change the world by program!</h2>
- </body>
- </html>
复制代码 |
评分
-
参与人数 1 | 荣誉 +6 |
鱼币 +6 |
贡献 +3 |
收起
理由
|
不二如是
| + 6 |
+ 6 |
+ 3 |
稍微修改下背景,不平铺更棒! |
查看全部评分
|