一个div布局实现仙境美食效果代码

代码语言:html

所属分类:布局界面

代码描述:一个div布局实现仙境美食效果代码

代码标签: 实现 仙境 美食 效果

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

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

<head>

  <meta charset="UTF-8">

  
<style>
body {
  min-height: 220px;
  height: 100vh;
  position: relative;
  background-color: #a52a2a;
  text-align: center;
}
div {
  position: absolute;
  left: 50%;
  top: 50%;
}
div:before,
div:after {
  display: block;
  content: '';
  position: absolute;
}
#surprise {
  width: 17em;
  height: 10em;
  margin-left: -8.5em;
  margin-top: -5em;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5f9ea0), to(#5f9ea0)), -webkit-gradient(linear, left top, left bottom, from(#ffd700), to(#ffd700)), -webkit-gradient(linear, left top, left bottom, from(#ccac00), to(#ccac00)), -webkit-gradient(linear, left top, left bottom, from(#ccac00), to(#ccac00)), -webkit-gradient(linear, left to.........完整代码请登录后点击上方下载按钮下载查看

网友评论0