搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>重复的线性渐变示例 - div.cn 基础教程</title> <style> .gradient { width: 400px; height: 300px; /* 不支持渐变的浏览器的备用样式 */ background: white; /* Safari 5.1-6.0 浏览器 */ background: -webkit-repeating-linear-gradient(black, white 10%, lime 20%); /* Internet Explorer 10 浏览器 */ background: -ms-repeating-linear-gradient(black, white 10%, lime 20%); /* 标准语法 */ background: repeating-linear-gradient(black, white 10%, lime 20%); } </style> </head> <body> <div class="gradient"></div> </body> </html>
运行结果