 PHPz
PHPz批改状态:合格
老师批语:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>雪碧图</title>
    <style>
        div{
            width: 100px;
            height: 100px;
            background-image: url('https://img.php.cn/upload/image/587/391/184/1652174108167035.jpg');
            background-repeat: no-repeat;
            background-position: center;
            padding: 0;
        }
        .box{
            width: 300px;
            height: 300px;
            background-image: none;
            position: relative;
        }
        .box1 {
            background-position: -11px -8px;
        }
        .box2 {
            background-position: -121px -8px;
            position: absolute;
            left:100px;
            top: 0;
        }
        .box3 {
            background-position: -231px -8px;
            position: absolute;
            left:200px;
            top: 0;
        }
        .box4 {
            background-position: -341px -8px;
            position: absolute;
            left: 0;
            top: 100px;
        }
        .box5 {
            background-position: -451px -8px;
            position: absolute;
            left: 100px;
            top: 100px;
        }
        .box6 {
            background-position: -561px -8px;
            position: absolute;
            left: 200px;
            top: 100px;
        }
        .box7 {
            background-position: -671px -8px;
            position: absolute;
            left: 0;
            top: 200px;
        }
        .box8 {
            background-position: -781px -8px;
            position: absolute;
            left: 100px;
            top: 200px;
        }
        .box9 {
            background-position: -891px -8px;
            position: absolute;
            left: 200px;
            top: 200px;
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box1"></div>
        <div class="box2"></div>
        <div class="box3"></div>
        <div class="box4"></div>
        <div class="box5"></div>
        <div class="box6"></div>
        <div class="box7"></div>
        <div class="box8"></div>
        <div class="box9"></div>
    </div>
    
</body>
</html>点击 "运行实例" 按钮查看在线实例
 
                 
                        
                    Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号