gpt4 book ai didi

css - 如何水平居中垂直旋转的文本?

转载 作者:行者123 更新时间:2023-12-05 05:06:35 25 4
gpt4 key购买 nike

这是我面临的问题:

Issue

无论我尝试什么,它都不会水平对齐笑脸。

CodePen 引用:https://codepen.io/d1401/pen/eYmPgZP

.no-results {
text-align: center;
}

#smiley {
font-size: 12em;
writing-mode: vertical-lr;
margin: 30px auto;
}

#text {
font-size: 1.6em;
}
<div class="no-results">
<p id="smiley">:(</p>
<p id="text">No matches found</p>
</div>

请注意,笑脸已旋转 90 度。

最佳答案

您可以考虑使用伪元素进行vertical-align hack:

.no-results {
text-align: center;
}

#smiley {
font-size: 12em;
writing-mode: vertical-lr;
margin: 30px auto;
}

#text {
font-size: 1.6em;
}
/* This will do the magic */
p#smiley:before {
content: "";
vertical-align: sub;
}
<div class="no-results">
<p id="smiley">:(</p>
<p id="text">No matches found</p>
</div>

关于css - 如何水平居中垂直旋转的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59792780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com