Is it possible to achieve a
-like effect without using the
tag?

前端 未结 9 2316
春和景丽
春和景丽 2020-12-01 06:03

I personally like the

tag because of how it draws a box and puts the at the top of it, over the border. Like this.

9条回答
  •  我在风中等你
    2020-12-01 06:45

    Demo jsBin link

    .fieldset {
      border: 1px solid #ffffd;
      margin-top: 1em;
      width: 500px;
    }
    
    .fieldset h1 {
      font-size: 12px;
      text-align: center;
    }
    
    .fieldset h1 span {
      display: inline;
      border: 1px solid #ffffd;
      background: #fff;
      padding: 5px 10px;
      position: relative;
      top: -1.3em;
    }

    Title

    Content

提交回复
热议问题