css实现单元素标题横线居中美化效果代码
代码语言:html
所属分类:布局界面
代码描述: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: conic-gradient(from 45deg at left ,var(--c) 25%,#0000 0) 0, conic-gradient(from -135deg at right,var(--c) 25%,#0000 0) 100%; background-size: 51% 100%; background-origin: border-box; background-repeat: no-repeat; border-image: linear-gradient( #0000 calc(50% - var(--b)/2), var(--c) 0 calc(50% + var(--b)/2), #0000 0) 1/0 var(--w)/calc(var(--w) + var(--g)); margin-inline: auto; } p { font-size: 1.3rem; text-align: justify; margin-inline: max(20px, 50% - 800px/2); } h1 { font-size: 2.3rem; } h2 { font-size: 1.8rem; } body { font-family: system-ui, sans-serif; } </style> </head> <body > <h1 class="fancy">Main Title</h1> <p>Croissant tiramisu candy canes danish dragée lemon drops. Tart dessert dragée fruitcak.........完整代码请登录后点击上方下载按钮下载查看
网友评论0