美文网首页
水平垂直居中

水平垂直居中

作者: lx_smile | 来源:发表于2017-11-08 19:51 被阅读0次

方法1

  • 代码
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <style>
    .main{
      width: 300px;
      height: 300px;
      position: relative;
      border: 1px solid #465468;
 }
 .inner{
      position: absolute;
      background:red;
      width:100px;
      height:100px;
      margin: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
 }
    </style>
</head>
<body>
<div class = "main">
   <div class = "inner"></div>
</div>
</body>
</html>

方法2

  • 代码
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <style>
    .main{
      width: 300px;
      height: 300px;
      position: relative;
      border: 1px solid #465468;
 }
 .inner{
      position: absolute;
      background:red;
      width:100px;
      height:100px;
      top: 50%;
      left: 50%;
      margin-top: -50px; 
      margin-left: -50px; 
     
 }
    </style>
</head>
<body>
<div class = "main">
   <div class = "inner"></div>
</div>
</body>
</html>

方法3

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <style>
    .main{
      width: 300px;
      height: 300px;
      border: 1px solid #465468;
      align-items:center;
      justify-content:center;
      display:flex;
 }
 .inner{
      background:red;
      width:100px;
      height:100px;
     
     
 }
    </style>
</head>
<body>
<div class = "main">
   <div class = "inner"></div>
</div>
</body>
</html>
  • 效果


    demo1.png

相关文章

  • CSS居中布局方案

    水平居中 垂直居中 水平垂直居中

  • 常用的居中方法

    本文将介绍的居中方法有 ,水平居中,垂直居中和水平垂直居中。 一水平居中 二水平垂直居中

  • 元素居中的方式

    1 水平居中 2 垂直居中 3 水平垂直居中

  • css居中方式总结(亲测有效)

    水平居中(行内元素水平居中、块级元素水平居中) 垂直居中 水平垂直居中 行内元素水平居中 text-align: ...

  • CSS水平垂直居中总结

    CSS水平居中、垂直居中、水平垂直居中方法总结 文字的水平居中: 单行文字的垂直居中: 让有宽度的div水平居中:...

  • 居中布局

    水平居中 垂直居中 垂直水平居中 已知元素的宽高的居中布局 定位居中布局 盒模型居中布局 图片的垂直水平居中(利用...

  • CSS图片居中(水平居中和垂直居中)

    css图片水平居中 css图片垂直居中 css图片水平垂直居中

  • css多行垂直水平居中--table布局大法

    ======= SEO专用 table-cell 定高水平垂直居中 不定高水平垂直居中 单行定高水平垂直居中 单行...

  • CSS居中大全(带截图)

    文字水平居中 图片水平垂直居中 图片与文字水平垂直居中 代码同上 DIV相对于页面垂直居中并且响应式 视口绝对垂直...

  • 居中对齐

    行内元素居中[#hang]垂直居中[#hc]水平居中[#hs] 块级元素居中[#kuai]垂直居中[#kc]水平居...

网友评论

      本文标题:水平垂直居中

      本文链接:https://www.haomeiwen.com/subject/ssvxpxtx.html