赞
踩
这是一段简单的 HTML 代码,显示一个 "元旦快乐" 的文字,并在背景中添加星空特效:
- <html>
- <head>
- <style>
- body {
- background: url("https://i.imgur.com/KO1sC9X.gif") no-repeat center center fixed;
- background-size: cover;
- }
- h1 {
- color: white;
- text-align: center;
- }
- </style>
- </head>
- <body>
- <h1>元旦快乐</h1>
- </body>
- </html>
其中,我们在 style
标签中定义了一些样式,将背景设置为一个图像并使用 background-size: cover
属性使图像覆盖整个屏幕。此外,我们还设置了文本颜色为白色,并使用 text-align: center
属性将文本居中对齐。
希望这个代码能帮到你!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。