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%);">