通过CSS将元素定位在边框上

通过CSS将元素定位在边框上

<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;
}
结果

在这里插入图片描述

发布了24 篇原创文章 · 获赞 1 · 访问量 2429

猜你喜欢

转载自blog.csdn.net/qq_35018214/article/details/103814762