css transform_translate2.html

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>transform_translate2</title>

    <style>
        *{
            padding: 0px;
            margin: 0px;
        }
        .container{
            width: 500px;
            height: 500px;
            background-color: #cccccc;
            margin: 0 auto;
        }
        .container .box{
            width: 100px;
            height: 100px;
            background-color: #1acd7e;
            transform: translate(150px, 150px);
        }
        .container .box2{
            width: 100%;
            height: 100px;
            background-color: green;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="box"></div>
    <div class="box2"></div>
</div>
</body>
</html>

效果图如下:

css transform_translate2.html