使用绝对定位破坏文本

Text is breaking using absolute positioning

我有一个小挑战,我在 Stack Overflow 上没有找到任何解决方案。

这就是我得到的:

这就是我想要的方式:

为了产生这种标题效果,我使用了绝对位置。我什至不知道标题的宽度和高度。因此,使用此解决方案时大文本会中断。

我的HTML:

<div class="content">
  <h1 class="title">February 2015</h1>
  <p>Mussum ipsum cacilds, vidis litro abertis. Consetis adipiscings elitis. Pra lá , depois divoltis porris, paradis. Paisis, filhis, espiritis santis. Mé faiz elementum girarzis, nisi eros vermeio, in elementis mé pra quem é amistosis quis leo. Manduma pindureta quium dia nois paga. Sapien in monti palavris qui num significa nadis i pareci latim. Interessantiss quisso pudia ce receita de bolis, mais bolis eu num gostis.</p>
</div>

我的CSS:

.content {
  border: 3px double black;
  padding-top: 60px;
  position: relative;
  width: 350px;
}

.content p { margin: 20px; }

.title {
  background: black;
  border-radius: 5px;
  color: white;
  left: 50%;
  padding: 10px;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 0;
}

查看 Codepen 上的示例,让生活更轻松: http://codepen.io/caio/pen/ZYoyPb

最简单的解决方案是添加 white-space: nowrap。这样做时,h1 文本不会换行。 (updated example)

.title {
  white-space: nowrap;
  background: black;
  border-radius: 5px;
  color: white;
  left: 50%;
  padding: 10px;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 0;
}

此外,您还可以添加text-overflow: ellipsis/overflow: hidden/width: 100%,使文本形成省略号并且永远不会换行。 (example here)

在这里,我为您做了一些小的CSS更改。

/* Cosmetics */
* { box-sizing: border-box; }
body { margin: 50px; }
p { margin: 0; }


/* True Code */
.content {
  border: 3px double black;
  padding-top: 30px;
  position: relative;
  width: 350px;
}

.content p { margin: 20px; }

.title {
  background: black;
  border-radius: 5px;
  color: white;
  left: 50%;
  padding: 10px;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 0;
  white-space: nowrap;
  margin-top: 0px;
}

您的代码是正确的,但是 left 属性破坏了您的输出。由于您的 .content div 设置为 relative,因此 .title 将保留在其中。因此,您只需要使用 transform: translate(); 更改 .title 的位置即可。代码。 瞧,你得到了你想要的输出。

您可能会注意到我给 .content padding-top 只是为了将标题放在适当的位置。

修改后的代码如下:

/* Cosmetics */
* { box-sizing: border-box; }
body { margin: 50px; }
p { margin: 0; }


/* True Code */
.content {
  border: 3px double black;
  padding-top:10px;
  position: relative;
  width: 350px;
}

.content p { margin: 20px; }

.title {
  background: black;
  border-radius: 5px;
  color: white;
  padding: 10px;
  position: absolute;
  transform: translate(22%,-110%);
}

还有一个解决方案:

.title {
    width: max-content;
}

得到广泛支持(截至 2019 年 7 月 17 日为 92.25%)https://caniuse.com/#feat=intrinsic-width

详情阅读