By the CSS element positioned on the border

By the CSS element positioned on the border

<div class="myborder">
   <span class="title">dingwei</span>
</div>
span.title {
    display: block;
    position: relative;
    text-align: center;
    background: white;
    top: -10px;
    left: 30px;
    width: 150px;
}
.myborder{
  border: 1px solid black;
}
result

Here Insert Picture Description

Published 24 original articles · won praise 1 · views 2429

Guess you like

Origin blog.csdn.net/qq_35018214/article/details/103814762