在 HTML 和 CSS 中使 Div 居中的不同方法

在 linkedin 上关注我
在 github.com 上关注我点击阅读没有boaring setion,我们可以重定向到编码!1.使用flexboxflexbox 是一个强大的布局工具,可以轻松地将元素水平和垂直居中。例子:<meta

在 html 和 css 中使 p 居中的不同方法

在 linkedin 上关注我
github.com 上关注我

点击阅读

没有boaring setion,我们可以重定向到编码!

1.使用flexbox

flexbox 是一个强大的布局工具,可以轻松地将元素水平和垂直居中

例子:

    <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>center p with flexbox</title><style>        .container {            display: flex;            justify-content: center; /* horizontal center */            align-items: center;    /* vertical center */            height: 100vh;          /* full viewport height */        }        .centered-p {            width: 200px;            height: 200px;            background-color: lightblue;        }    </style><p class="container">        <p class="centered-p">centered with flexbox</p>    </p>

登录后复制


2.使用网格

css grid 是另一个强大的布局系统,可以轻松地将元素居中。

例子:

    <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>center p with grid</title><style>        .container {            display: grid;            place-items: center; /* center both horizontally and vertically */            height: 100vh;       /* full viewport height */        }        .centered-p {            width: 200px;            height: 200px;            background-color: lightcoral;        }    </style><p class="container">        <p class="centered-p">centered with grid</p>    </p>

登录后复制


3. 使用绝对定位和变换

此方法涉及绝对定位 p 并使用变换使其居中。

例子:

    <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>center p with absolute positioning</title><style>        .container {            position: relative;            height: 100vh; /* full viewport height */        }        .centered-p {            position: absolute;            top: 50%;            left: 50%;            transform: translate(-50%, -50%);            width: 200px;            height: 200px;            background-color: lightgreen;        }    </style><p class="container">        <p class="centered-p">centered with absolute positioning</p>    </p>

登录后复制


4. 使用自动保证金

对指定宽度的元素设置 margin: auto 可以使其水平居中。

例子:

    <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>center p with margin auto</title><style>        .container {            width: 100%;            height: 100vh; /* full viewport height */            display: flex;            align-items: center; /* vertical center */        }        .centered-p {            margin: 0 auto; /* horizontal center */            width: 200px;            height: 200px;            background-color: lightcoral;        }    </style><p class="container">        <p class="centered-p">centered with margin auto</p>    </p>

登录后复制


5. 使用表格显示

此方法使用 display: table 和 display: table-cell 来使元素居中。

例子:

    <meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Center Div with Table Display</title><style>        .container {            display: table;            width: 100%;            height: 100vh; /* Full viewport height */        }        .centered-p {            display: table-cell;            vertical-align: middle; /* Vertical center */            text-align: center;     /* Horizontal center */        }        .inner-p {            display: inline-block;            width: 200px;            height: 200px;            background-color: lightpink;        }    </style><p class="container">        <p class="centered-p">            <p class="inner-p">Centered with Table Display</p>        </p>    </p>

登录后复制


拜伊
快乐编码!

以上就是在 HTML 和 CSS 中使 Div 居中的不同方法的详细内容,更多请关注叮当号网其它相关文章!

文章来自互联网,只做分享使用。发布者:周斌,转转请注明出处:https://www.dingdanghao.com/article/657367.html

(0)
上一篇 2024-07-27 19:35
下一篇 2024-07-27 19:35

相关推荐

联系我们

在线咨询: QQ交谈

邮件:442814395@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信公众号