css实现单元素标题横线居中美化效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现单元素标题横线居中美化效果代码

代码标签: css 单元素 标题 横线 居中 美化

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

<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
  
<style>
.fancy {
  --b: 6px;   /* control the border thickness */
  --w: 80px;  /* control the width of the line*/
  --g: 15px;  /* control the gap */
  --c: #0B486B;
 
  width: fit-content;
  padding: 0 1em;
  line-height: 1.6em;
  border: 1px solid;
  color: #fff;
  background: 
    co.........完整代码请登录后点击上方下载按钮下载查看

网友评论0