html - css 如何让文字标题显示在边框上?
阿神
阿神 2017-04-17 11:49:52
0
8
997

如图,如何让文字标题显示在边框上?

阿神
阿神

闭关修行中......

reply all(8)
刘奇
 <fieldset>
    <legend>【使用方法】</legend>
  </fieldset>
Ty80

If you need more precise expansion and the effect of fieldset is not good, you can implement one yourself, as follows:

<style>
    .box{
        position:relative;
        border:1px solid red;
    }
    .box::before{
        content:attr(title);
        position:absolute;
        left:50%;
        transform:translateX(-50%);
        -webkit-transform:translate(-50%,-50%);
        padding:0 10px;
        background-color:#fff;
    }
</style>
<p class="box" title="使用方法">
    <ol>
        <li>这是啥</li>
        <li>干啥</li>
    </ol>
</p>
左手右手慢动作
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<fieldset>
    <legend style="text-align: center">【使用方法】</legend>
</fieldset>
</body>
</html>
PHPzhong

Provide a hacked method:

style:

  p {
    width: 400px;
    height: 200px;
    border: 1px solid #ccc;
  }
  p h1 {
    height: 20px;
    margin: -10px auto 0;
    font-size: 14px;
    padding: 0 10px;
    text-align: center;
    width: 50px;
  }

html:

  <p>
    <h1>嘿嘿嘿</h1>
  </p>
迷茫

I just thought about it and let’s make do with it
http://codepen.io/colahan/pen...

It is not recommended to use fieldset, it will usually be reset

伊谢尔伦

Absolute positioning plus text width and height

迷茫

Obviously it’s absolute positioning

巴扎黑
<style>
    h2:before, h2:after {
        content: "";
        display: inline-block;
        vertical-align:middle;
        width: 100px;
        border-top: 1px solid #123456;
    }
</style>

<h2>线标题</h2>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template