码迷,mamicode.com
首页 > 其他好文 > 详细

0060 translate、margin 实现绝对定位的盒子 水平居中、垂直居中

时间:2019-12-31 21:52:33      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:size   har   ati   sea   RoCE   initial   就是   vue   chm   

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        div {
            position: relative;
            width: 300px;
            height: 300px;
            background-color: pink;
            /* 1. 我们tranlate里面的参数是可以用 % */
            /* 2. 如果里面的参数是 %, 移动的距离是 盒子自身的宽度或者高度来对比的 */
            /* 这里的 50% 就是 50px 因为盒子的宽度是 100px */
            /* transform: translateX(50%); */
        }
        
        p {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            background-color: lightseagreen;
            /* margin-top: -100px;
            margin-left: -100px; */
            /* translate(-50%, -50%)  盒子往上走自己高度的一半   */
            transform: translate(-50%, -50%);
        }
        
        span {
            /* translate 对于行内元素是无效的 */
            transform: translate(300px, 300px);
        }
        /* 我的补充 */
        i {
            display: inline-block;
            width: 100px;
            height: 30px;
            line-height: 30px;
            background-color: lightgreen;
            text-align: center;
            transform: translate(30px, 30px);
        }
    </style>
</head>

<body>
    <div>
        <p></p>
    </div>
    <span>123</span>
    <i>哈哈哈</i>
</body>

</html>

技术图片

0060 translate、margin 实现绝对定位的盒子 水平居中、垂直居中

标签:size   har   ati   sea   RoCE   initial   就是   vue   chm   

原文地址:https://www.cnblogs.com/jianjie/p/12127136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!