我有一个小小的挑战,我没有在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
答案 0 :(得分:17)
最简单的解决方案是添加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)
答案 1 :(得分:3)
在这里,我为您做了一些小的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;
}
答案 2 :(得分:2)
你的代码是正确的,但左边的属性破坏了你的输出。当你的.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%);
}
答案 3 :(得分:0)
还有另一种解决方法:
.title {
width: max-content;
}
它得到了广泛支持(截至2019年7月17日为92.25%)https://caniuse.com/#feat=intrinsic-width
有关详细信息,请阅读this answer。