CSS to achieve horizontal lines on both sides of the middle text

CSS to achieve horizontal lines on both sides of the middle text

1. The vertical-align property achieves the following effect:

The vertical-align property sets the vertical alignment of an element.

This property defines the vertical alignment of an inline element's baseline relative to the baseline of the line in which the element resides. Negative length values ​​and percentage values ​​are allowed.

<div class="header">
    <span class="line"></span>
    <span class="text">Text in the middle, horizontal lines on both sides</span>
    <span class="line"></span>
</div>

<style>
.header
{
    width:400px;
    height:36px;
    line-height:36px;
    border:1px solid green;
    text-align:center;
}
.line
{
    display:inline-block;
    width:100px;
    border-top:1px solid #cccccc;
    vertical-align:5px;  
  // I saw online that .text is set to vertical-align:-5px. I tried it and it seems to conflict with the line-height set for .header, so the effect is not quite right. So set vertical-align to .line}
</style> 

2. CSS pseudo-class implementation effect:

<div class="header">
    <div>Text in the middle, horizontal lines on both sides</div>
</div>

<style>
    .header
    {
        width:400px;
        height:36px;
        line-height: 36px;
        text-align:center;
        border:1px solid green;
        position:relative;
    }
    .header div:before, .header div:after
    {
        position:absolute;
        background:#ccc;
        content:"";
        height:1px;
        top:50%;
        width:100px;
    }
    .header div:before{left:10px;}
    .header div:after{right:10px;}
</style> 

Summarize

The above is the CSS that I introduced to you to achieve the horizontal line effect on both sides of the middle text. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Vue template configuration and webstorm code format specification settings

>>:  Detailed tutorial on installing pxc cluster with docker

Recommend

Detailed explanation of this pointing problem in JavaScript

Preface Believe me, as long as you remember the 7...

Solution to the failure of loading dynamic library when Linux program is running

Unable to load dynamic library under Linux When t...

MySQL exposes Riddle vulnerability that can cause username and password leakage

The Riddle vulnerability targeting MySQL versions...

Do you know all 24 methods of JavaScript loop traversal?

Table of contents Preface 1. Array traversal meth...

The difference between ENTRYPOINT and CMD in Dockerfile

In the Docker system learning tutorial, we learne...

Getting Started: A brief introduction to HTML's basic tags and attributes

HTML is made up of tags and attributes, which are...

Detailed explanation of the mechanism and implementation of accept lock in Nginx

Preface nginx uses a multi-process model. When a ...

Specific use of exception filter Exceptionfilter in nestjs

Speaking of Nestjs exception filter, we have to m...

Detailed explanation of Vue3.0 + TypeScript + Vite first experience

Table of contents Project Creation Project Struct...

Simple steps to write custom instructions in Vue3.0

Preface Vue provides a wealth of built-in directi...

Example code for implementing 3D text hover effect using CSS3

This article introduces the sample code of CSS3 t...

Detailed explanation of docker visualization graphics tool portainer

Table of contents 1. Introduction to Portainer 2....

Centering the Form in HTML

I once encountered an assignment where I was give...

Solutions to Files/Folders That Cannot Be Deleted in Linux

Preface Recently our server was attacked by hacke...