分类
个人学习历程

html元素置中

transform:translate(40%,20px);

第一个数值代表距离左边的距离,第二个数值代表立上边的距离
示例:

<style>
        .tou{
            width: 1080px;
            position:absolute;
            transform:translate(40%,20px);
        }
        .mainpng{
            width: 1080px;
        }
        .title{
            margin: auto;
            float: inherit;
            transform:translate(40%,0);
        }
</style>

发表评论