首页
CSS
CSS 颜色关键字
试用:使用 transparent 关键字
运行 ❯
获取您自己的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> body { background-image: url("paper.gif"); } div.ex1 { background-color: lightgreen; border: 2px solid black; padding: 15px; } div.ex2 { background-color: transparent; border: 2px solid black; padding: 15px; } </style> </head> <body> <h2>The transparent Keyword</h2> <div class="ex1">This div has a light green background.</div> <br> <div class="ex2">This div has a transparent background.</div> </body> </html>