css实现打开书柜404错误导航页面代码

代码语言:html

所属分类:布局界面

代码描述:css实现打开书柜404错误导航页面代码

代码标签: 书柜 404 错误 导航 页面

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

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

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body, html {
          height: 100%;
        }
        
        body {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          margin: 0;
          padding: 0;
          background-color: #446072;
          font-family: "Microsoft YaHei",sans-serif;
          color: white;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column;
          overflow: hidden;
        }
        h1 {
          margin-top: 2rem;
        }
        p{
          font-family: "Microsoft YaHei","Segoe UI", "Lucida Grande", Helvetica, Arial,sans-serif;
        }
        .shelf {
          position: relative;
          width: 30rem;
          height: 14rem;
          border: 0.5rem solid #374d5b;
          border-radius: 0.5rem;
          background-color: rgba(255, 255, 255, 0.1);
          -webkit-perspective: 130rem;
                  perspective: 130rem;
          box-shadow: inse.........完整代码请登录后点击上方下载按钮下载查看

网友评论0