zwk-It-goodmorning

css样式 div垂直水平居中对齐

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>菜鸟教程(runoob.com)</title> 
<style> 
div
{
    width:100px;
    height:100px;
    border:1px solid black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    /* Rotate div */
}
</style>
</head>
<body>

<div>Hello</div>

</body>
</html>

分类:

技术点:

相关文章:

  • 2021-12-31
  • 2021-11-15
  • 2021-11-21
  • 2021-12-01
  • 2022-12-23
  • 2021-12-01
  • 2021-11-06
  • 2022-12-23
猜你喜欢
  • 2022-02-23
  • 2021-12-04
  • 2021-06-28
  • 2021-10-29
  • 2021-11-27
  • 2022-01-05
相关资源
相似解决方案