gpt4 book ai didi

css - 旋转文本并将其容器缩小到新的宽度

转载 作者:技术小花猫 更新时间:2023-10-29 10:37:35 25 4
gpt4 key购买 nike

我想旋转一些文本以进行垂直显示(一个 y 轴图表标签)。文本可以是任意长度的(但总是在一行上)。

我尝试使用 CSS3 转换 进行旋转(参见 JSFiddle ):

.rotate {
transform: rotate(270deg);
}

但是,元素的原始宽度和高度即使在旋转后仍会保留,如 described in the spec :

In the HTML namespace, the transform property does not affect the flow of the content surrounding the transformed element.

这意味着元素的容器宽度根据标签文本长度扩展,影响相邻图表的位置。

如何旋转文本并将其容器缩小到新的宽度?任何解决方案都会有所帮助,包括 JavaScript/jQuery 解决方案或替代方法。

最佳答案

我找到了使用绝对定位的解决方法。旋转的文本可以绝对定位“相对于其最近定位的祖先的边界”。说明:

  • position: relative 在容器上使其成为“最近定位的祖先”
  • position: absolute 在旋转文本上,设置为容器底部(减去行高)
  • 从左上角开始旋转文本

JSFiddle

.container {
position: relative; /*make container the closest positioned ancestor*/
border: 1px solid red;
display: inline-block;
height: 400px;
min-width: 30px; /*same as line-height of rotated text*/
}

.rotate {
text-align: center;
overflow: hidden;
height: 30px;
line-height: 30px;
width: 400px; /*matches the height of the container*/
position: absolute;
bottom: -32px; /*0 = bottom of container, then subtract (line-height+border)*/
border: 1px solid blue;
transform: rotate(-90deg);
transform-origin: top left;
}

假设:

  • 文本宽度可以设置为一个合理的值(例如容器的高度)
  • 文本中没有换行符(单行解决方案)

关于css - 旋转文本并将其容器缩小到新的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28741562/

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