Bootstrap HTML5 带边框和小文本的标题像字段集但没有 fieldset/legend

Bootstrap HTML5 Title with border and small text like fieldset but no fieldset/legend

我正在构建基于 bootstrap 的网站,我正在尝试在框架内制作标题,文本附加在底部边框的中间,并且仍然可以响应。小型设备上的小文本可以排成多行,甚至可以放在框内。

我能做的就是
.
And I want to do it like .

我希望有人已经这样做了 and/or 可以帮助我这样做。

提前致谢。

一个重要的细节是它应该是完全透明的,这样它就可以覆盖背景图片。

它与 fieldset 有很大不同,因为 "legend" 在底部。

更新:

See fiddle

CSS:

.navbar-brand {
  margin: 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  display: inline-block;
  border-top: 8px solid #ffffff;
  padding: 5px 32px 0px 32px;
  line-height: 1.08333333;
  height: auto;
}
.navbar-brand:before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  width: 8px;
  bottom: 12px;
  background: #ffffff;
}
.navbar-brand:after {
  position: absolute;
  content: '';
  right: -8px;
  top: -8px;
  width: 8px;
  bottom: 12px;
  background: #ffffff;
}
.navbar-brand a:hover,
.navbar-brand a:focus {
  color: #ffffff;
  text-decoration: none;
}
.navbar-header + h3 {
  margin-top: 61px;
}
.navbar-header {
  text-align: center;
}
.small-lines:before {
  position: absolute;
  content: '';
  left: -40px;
  height: 8px;
  bottom: 12px;
  width: 8%;
  background: #ffffff;
}
.small-lines:after {
  position: absolute;
  content: '';
  right: -40px;
  height: 8px;
  bottom: 12px;
  width: 8%;
  background: #ffffff;
}
.small-lines1:before {
  width: 38%;
  background: #009fb6;
}
.small-lines1:after {
  width: 38%;
  background: #009fb6;
}
.navbar-brand a{
    font-size: 48px;
}
.container{
    margin-top: 150px;
}

small {
    line-height: 1.2;
    font-size: 24px;
    letter-spacing: 4.8px;
    display: block;
    position: relative;
}

HTML:

    <body style="background: black">
    <header class="">  
        <div class="container text-center">
            <div class="navbar-header">
                <h1 class="navbar-brand ">
                    <a href="./">BIG TITLE ONE<br>
                        <small class="small-lines">Here comes small text</small>
                    </a>
                </h1>
            </div>
        </div>
    </header>
    </body>