<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>css_transform_translate()2</title>
<style>
/*参考:https://www.cnblogs.com/zhaosijia----1234/p/9389455.html*/
* {
padding: 0;
margin: 0;
}
.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">
container 500x500px
<div class="box">
div 100x100px
</div>
<div class="box2">
div 500x100px
</div>
</div>
</body>
</html>