我可以更改内部定义的内容字符串的高度:在伪元素之后/之前吗?

问题描述 投票:0回答:1

我正在使用:在伪元素之后显示卡片标题的分隔符,如下所示。

.lock-flag {
  font-size: 1em;
}

.lock-flag .lock-icon {
  margin-right: 0.5em;
}

.lock-flag .lock-icon:after {
  content: "-";
}

.lock-flag .lock-separator::after {
  content: "|";
  color: #666;
}
<div class="lock-flag">
  <span class="lock-icon"></span>
  <span class="lock-separator"></span>
</div>
<span class="title">Title</span>

问题是分隔符在正常大小时正确显示但是当屏幕调整大小时,分隔符大小保持不变,尽管容器大小(锁定分隔符)因屏幕大小而异,因为正在通过@media更改正文的字体大小。

请建议如何调整分隔符大小。这是将分隔符放置的正确方法吗?

编辑:根据建议的注释,将元素从span更改为div以进行块显示。问题仍然存在。如下所示,期望是将分隔符的高度与锁定图标匹配。分离器和容器的高度根据图片2和3而变化。

With 1em size Actual size of the separator Actual size of the container

html html5 css3 sass
1个回答
1
投票

我的建议:在尺寸不同的元素上使用::pseudo。在这个演示中,我选择改变.media的尺寸(在你的情况下将是锁定图标)影响其::after,但它可以切换为右侧文本的::before(定位为left: negative-value;)。 由于涉及绝对定位,您必须确保图标和文本之间有足够的空间来显示分隔符。

➡️Codepen

.parent {
  display: inline-flex; /* or flex */
  justify-content: space-between;
  align-items: center; /* vertical aligning */
  height: 100%;
  outline: 1px dotted #aaa;
}

.media {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
  background-color: #0888;
}

.media::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.2rem;
  display: block;
  width: 1px;
  /* height: 100%; can replace t:0 b:0 */
  border-left: 1px solid #444;
}

.tall {
  width: 4rem;
  height: 4rem;
}

.title {
  margin: 0;
}

section {
  margin: 1rem;
}

section:not(:first-child) {
  margin-top: 1rem;
}
<section>
  <div class="parent">
    <span class="media"></span>
    <p class="title">Heading</p>
  </div>
</section>

<section>
  <div class="parent">
    <span class="media tall"></span>
    <p class="title">Heading</p>
  </div>
</section>
© www.soinside.com 2019 - 2024. All rights reserved.