美文网首页
标题两边的装饰符号

标题两边的装饰符号

作者: 何必再健 | 来源:发表于2022-03-24 11:07 被阅读0次

这是一个小demo,希望举一反三

第一种

HTML

<span class="title_h2">默认标题</span>

CSS

.title_h2{
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    text-align: center;
    padding:5px 10px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}

.title_h2::before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 10px;
    height: 10px;
    content: " ";
    border-top:2px solid #000;
    border-left:2px solid #000;
    transform: rotate(-5deg);
}
.title_h2::after{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 10px;
    height: 10px;
    content: " ";
    border-bottom:2px solid #000;
    border-right:2px solid #000;
    transform: rotate(5deg);
}

第二种

HTML

<span class="title_h3"><i></i>默认标题<i></i></span>

CSS

.title_h3{
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}
.title_h3 i:first-child{
    position: relative;
    box-sizing: border-box;
    width:6px;
    height: 20px;
    display: inline-block;
}
.title_h3 i:first-child::before{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 10px;
    height: 10px;
    content: " ";
    border-top:2px solid #000;
    transform: rotate(-10deg);
}
.title_h3 i:first-child::after{
    position: absolute;
    top: 2px;
    left: -2px;
    z-index: 0;
    width: 10px;
    height: 10px;
    content: " ";
    border-left:2px solid #000;
    transform: rotate(10deg);
}
.title_h3 i:last-child{
    margin-top: 8px;
    float: right;
    position: relative;
    box-sizing: border-box;
    width:4px;
    height: 20px;
    display: inline-block;
}
.title_h3 i:last-child::before{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: 10px;
    height: 10px;
    content: " ";
    border-bottom:2px solid #000;
    transform: rotate(-10deg);
}
.title_h3 i:last-child::after{
    position: absolute;
    bottom: 2px;
    right: -2px;
    z-index: 0;
    width: 10px;
    height: 10px;
    content: " ";
    border-right:2px solid #000;
    transform: rotate(10deg);
}

相关文章

  • 标题两边的装饰符号

    这是一个小demo,希望举一反三 第一种 HTML CSS 第二种 HTML CSS

  • 标题文字组合

    标题中加入装饰 1.在标题中加入并列的符号,同时也为标题文字带来了装饰的效果 2.添加二级文字信息,将字距拉大后,...

  • 【Markdown】语法

    Markdown语法 基础语法 标题 “#”符号设置标题,符号个数代表标题级别 列表 有序列表 数字 + . 无序...

  • 练习使用Markdown

    一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 基本符号 *,-,+这三个符号效果都一样,这三个符号被...

  • 用符号让标题更劲爆

    用符号让标题更劲爆 如何借助已经有名的人或物,来扩大你标题的影响力? 加了符号的标题就比没有加符号的标题更有一些吸...

  • 2020-09-27python

    一、Markdown编辑 1、创建标题时,需在标题文本前添加一个“#”符号(1-6个“#”符号),“#”符号的数量...

  • Markdown基本语法总结

    标题 在标题前面加上符号# 符号和标题之间要保留一个空格 # 标题 根据#的多少代表了标题的大小 一个到六个 # ...

  • 基础入门

    符号 几级标题

  • markdown(latex)常见数学符号代码

    数学符号要在两边加上$,如 $ x^2 $ 常用符号 符号代码 上标x^2 多个字符x^{abc} 下标x_2...

  • 一篇文章搞懂Python装饰器所有用法(建议收藏)

    01. 装饰器语法糖 如果你接触 Python 有一段时间了的话,想必你对@符号一定不陌生了,没错@符号就是装饰器...

网友评论

      本文标题:标题两边的装饰符号

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