作者:Sadness_小妖_619 | 来源:互联网 | 2022-10-18 12:26
1> Temani Afif..:
考虑writing-mode
切换文本的方向,然后添加height:100%
以限制高度并允许省略号起作用。最后添加一个180deg
轮播以使文本具有所需的样子:
.box {
position: relative;
width: 300px;
}
.box-header {
position: absolute;
top: 0;
bottom: 0;
display: flex;
align-items: center;
justify-content: center;
width: 20px;
padding: 10px;
font-weight: bold;
background: #ccc;
color: red;
min-width: 0;
}
.box-header > div {
writing-mode:vertical-lr;
transform:rotate(180deg);
height: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
border: 1px solid red;
}
.box-content {
margin-left: 40px;
padding: 10px;
background: #eee;
}
.some-content {
height: 100px;
}