搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS 透明度示例</title> <style> p { opacity: 0.7; padding: 10px; background: #00ff00; } </style> </head> <body> <p> 这段文字70%不透明(或30%透明)。使用<code>opacity</code>值,看看它是如何工作的</p> </body> </html>
运行结果