技术频道


CSS 自适应字体两边增加横线

预期效果:


CommandNotFound 评分详情
 

具体调用伪代码:


<div class="line-container">
  <span>CommandNotFound 评分详情</span>
</div>

CSS 代码:


.line-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-container::before,
.line-container::after {
  content: "";
  flex: 1; /* 横线占据剩余空间 */
  border-bottom: 1px solid #ccc; /* 横线样式,可以调整颜色和宽度 */
  margin: 0 10px; /* 横线与文字的间距 */
}

.line-container span {
  white-space: nowrap; /* 防止文字换行 */
  font-size: 16px; /* 文本大小,可调整 */
  color: #333; /* 文本颜色 */
}

CSS 选择器扩展阅读:




发表评论