青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

05_移动端-2D转换-translate

<!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>2D转换</title>
    <style>
        /* translate 不会影响其他的元素 对行内元素无效 */
        
        div {
            height: 200px;
            width: 200px;
        }
        
        div:nth-child(1) {
            background-color: salmon;
            /* transform: translate(100px, 100px); */
            transform: translate(50%, 50%);
            /* 自己尺寸的 50% */
        }
        
        div:nth-child(2) {
            background-color: slateblue;
        }
    </style>
</head>

<body>
    <div>1</div>
    <div>2</div>
</body>

</html>

 

posted on 2021-10-03 09:31  芦苇の  阅读(25)  评论(0编辑  收藏  举报