基本信息
源码名称:404错误页面 示例源码(三种风格)
源码大小:3.79KB
文件格式:.rar
开发语言:CSS
更新时间:2018-03-21
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 1 元 
   源码介绍

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <title>404错误页面不存在_懿古今</title>
    <style type="text/css">
        body, div, h3, h4, li, ol {
            margin: 0;
            padding: 0;
        }

        body {
            font: 14px/1.5 'Microsoft YaHei','微软雅黑',Helvetica,Sans-serif;
            min-width: 1200px;
            background: #f0f1f3;
        }

        :focus {
            outline: 0;
        }

        h3, h4, strong {
            font-weight: 700;
        }

        a {
            color: #428bca;
            text-decoration: none;
        }

            a:hover {
                text-decoration: underline;
            }

        .error-page {
            background: #f0f1f3;
            padding: 80px 0 180px;
        }

        .error-page-container {
            position: relative;
            z-index: 1;
        }

        .error-page-main {
            position: relative;
            background: #f9f9f9;
            margin: 0 auto;
            width: 617px;
            -ms-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            padding: 50px 50px 70px;
        }

            .error-page-main:before {
                content: '';
                display: block;
                background: url(img/errorPageBorder.png?1427783409637);
                height: 7px;
                position: absolute;
                top: -7px;
                width: 100%;
                left: 0;
            }

            .error-page-main h3 {
                font-size: 24px;
                font-weight: 400;
                border-bottom: 1px solid #d0d0d0;
            }

                .error-page-main h3 strong {
                    font-size: 54px;
                    font-weight: 400;
                    margin-right: 20px;
                }

            .error-page-main h4 {
                font-size: 20px;
                font-weight: 400;
                color: #333;
            }

        .error-page-actions {
            font-size: 0;
            z-index: 100;
        }

            .error-page-actions div {
                font-size: 14px;
                display: inline-block;
                padding: 30px 0 0 10px;
                width: 50%;
                -ms-box-sizing: border-box;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
                color: #838383;
            }

            .error-page-actions ol {
                list-style: decimal;
                padding-left: 20px;
            }

            .error-page-actions li {
                line-height: 2.5em;
            }

            .error-page-actions:before {
                content: '';
                display: block;
                position: absolute;
                z-index: -1;
                bottom: 17px;
                left: 50px;
                width: 200px;
                height: 10px;
                -moz-box-shadow: 4px 5px 31px 11px #999;
                -webkit-box-shadow: 4px 5px 31px 11px #999;
                box-shadow: 4px 5px 31px 11px #999;
                -moz-transform: rotate(-4deg);
                -webkit-transform: rotate(-4deg);
                -ms-transform: rotate(-4deg);
                -o-transform: rotate(-4deg);
                transform: rotate(-4deg);
            }

            .error-page-actions:after {
                content: '';
                display: block;
                position: absolute;
                z-index: -1;
                bottom: 17px;
                right: 50px;
                width: 200px;
                height: 10px;
                -moz-box-shadow: 4px 5px 31px 11px #999;
                -webkit-box-shadow: 4px 5px 31px 11px #999;
                box-shadow: 4px 5px 31px 11px #999;
                -moz-transform: rotate(4deg);
                -webkit-transform: rotate(4deg);
                -ms-transform: rotate(4deg);
                -o-transform: rotate(4deg);
                transform: rotate(4deg);
            }
    </style>
</head>
<body>
    <div class="error-page">
        <div class="error-page-container">
            <div class="error-page-main">
                <h3>
                    <strong>404</strong>很抱歉,您要访问的页面不存在!
                </h3>
                <div class="error-page-actions">
                    <div>
                        <h4>可能原因:</h4>
                        <ul>
                            <li>网络信号差不稳定</li>
                        </ul>
                    </div>
                    <div>
                        <h4>可以尝试:</h4>
                        <ul>
                            <li><a href="http://yigujin.cn/">返回首页</a></li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
</body>
</html>