美文网首页
如何使用CSS在水平线中间添加文字?

如何使用CSS在水平线中间添加文字?

作者: phpCN中文网 | 来源:发表于2019-07-08 09:25 被阅读0次

    如何使用CSS将文字显示在水平线中间?下面本篇文章就来给大家介绍使用CSS实现文字显示在水平线中间效果的方法,希望对大家有所帮助。

    CSS提供了在网页中间制作包含文字或图像的水平线以使其具有吸引力的功能,这可以通过使用简单的CSS属性来实现。

    语法:

    h4:before, h4:after {

        content: "";

        flex: 1 1;

        border-bottom: 2px solid #000;

        margin: auto;

    }

    示例1:将文字显示在水平线中间

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8">

    <style>

    h4 {

    display: flex;

    flex-direction: row;

    }

    h4:before,

    h4:after {

    content: "";

    flex: 1 1;

    border-bottom: 2px solid #000;

    margin: auto;

    }

    img {

    height: 100px;

    width: 100px;

    border-radius: 50%;

    }

    </style>

    </head>

    <body>

    <h4>HTML中文网</h4>

    </body>

    </html>

    效果图:

    示例2:将图像显示在水平线中间

    <!DOCTYPE html>

    <html>

    <head>

    <meta charset="utf-8">

    <style>

    h1 {

    display: flex;

    flex-direction: row;

    }

    h1:before,

    h1:after {

    content: "";

    flex: 1 1;

    border-bottom: 2px solid #000;

    margin: auto;

    }

    img {

    height: 100px;

    width: 120px;

    border-radius: 50%;

    }

    </style>

    </head>

    <body>

    <h1>

    <img src="https://www.html.cn/static/images/logo.png">

            </h1>

    </body>

    </html>

    效果图:


    本文参考地址:https://www.html.cn/qa/css3/10295.html

    相关文章

      网友评论

          本文标题:如何使用CSS在水平线中间添加文字?

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