css实现响应式彩虹渐变背景代码

代码语言:html

所属分类:背景

代码描述:css实现响应式彩虹渐变背景代码

代码标签: css 响应式 彩虹 渐变 背景 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
<style>


body {
    background: linear-gradient(to bottom, 
                                rgba(255, 0, 0, 1) 0%,       /* Red */
                                rgba(255, 0, 0, 1) 14.29%,   /* Red */
                                rgba(255, 165, 0, 1) 14.29%, /* Orange */
                                rgba(255, 165, 0, 1) 28.57%, /* Orange */
                                rgba(255, 255, 0, 1) 28.57%, /* Yellow */
                                rgba(255, 255, 0, 1) 42.86%, /* Yellow */
                                rgba(0, 128, 0, 1) 42.86%,   /* Green */
                                rgba(0, 128, 0, 1) 57.14%,   /* Green */
                                rgba(0, 0, 255, 1) 57.14%,   /* Blue */
                      .........完整代码请登录后点击上方下载按钮下载查看

网友评论0