css实现文字居中的横线效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现文字居中的横线效果代码

代码标签: css 文字 居中 横线

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">





    <style>
        h2 {
          --s: 3px;   /* the thickness */
          --c: red;   /* the color */
          --w: 100px; /* the width */
          --g: 10px;  /* the gap */
          border: 1px solid;
          border-image: 
             linear-gradient(
               #0000      calc(50% - var(--s)/2),
               var(--c) 0 calc(50% + var(--s)/2),
               #0000    0) 
            0 1/0 var(--w)/0 calc(var(--w) + var(--g));
 .........完整代码请登录后点击上方下载按钮下载查看

网友评论0