HTML5 body全局居中代码 body居中代码

分类: 时间:2025-03-06 14:15 浏览:523
概述
HTML5 body全局居中代码 body居中代码一、css样式:body{     position: absolute;     left: 50%;     top: 50%;     transform: translate
内容

HTML5 body全局居中代码 body居中代码


一、css样式:

body{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


二、body中添加 style样式:

<body style="position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);">


评论
联系我们
展开