如何将旋转的元素居中并将其对齐到顶部?

How to center a rotated element and align it to the top?

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0px;
}

.we-adopt {
    background-color: #8a8484;
    color: #ffffff;
    padding: 88px 0px;
    height: 100px;
}

.we-adopt-list span {
    display: inline-block;
    vertical-align: top;
    padding: 16px 60px 16px 24px;
    background-color: #222222;
    color: #ffffff;
    width: 100%;
}

.we-adopt-list li {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 1.6px;
    line-height: 24px;
    margin-bottom: 70px;
    text-transform: uppercase;
}

.we-adopt-list ul {
    display: inline-block;
    transform: rotate(-90deg) translateY(-50%);
    position: relative;
    left: 50%;
}

.we-adopt-list {
    position: relative;
}

.we-adopt-list li:last-child {
    margin-bottom: 0px;
}
<section class="we-adopt" style="height: 100px;">
    
</section>
<section class="we-adopt-wrap">
    <div class="container">
        <div class="we-adopt-list">
            <ul>
                <li><span>Mental agility</span></li>
                <li><span>Emotional agility</span></li>
                <li><span>Trust</span></li>
            </ul>
        </div>
    </div>
</section>

每当我将 transform- rotate 属性 应用到我的列表部分时,它会重叠或从上面的内容中取 space 一段时间。

案例一

案例二

应用 transform- rotate 后,我想从上面的灰色部分开始列表部分,没有间距,如下图所示。

期待结果

还有其他方法可以创建这种设计吗?

transform: rotate是纯视觉效果。它不会改变页面的流程。要将其放置在你想要的位置,你必须使用 transform: translatemargin 或其他东西。

考虑 transform-origin 并更新 transform 如下:

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0px;
}

.we-adopt {
  background-color: #8a8484;
  color: #ffffff;
  padding: 88px 0px;
  height: 100px;
}

.we-adopt-list span {
  display: inline-block;
  vertical-align: top;
  padding: 16px 60px 16px 24px;
  background-color: #222222;
  color: #ffffff;
  width: 100%;
}

.we-adopt-list li {
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1.6px;
  line-height: 24px;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.we-adopt-list ul {
  display: inline-block;
  transform-origin: top left;
  transform: rotate(-90deg) translateX(-100%) translateY(-50%);
  position: relative;
  margin: 0;
  left: 50%;
}

.we-adopt-list {
  position: relative;
}

.we-adopt-list li:last-child {
  margin-bottom: 0px;
}
<section class="we-adopt" style="height: 100px;">

</section>
<section class="we-adopt-wrap">
  <div class="container">
    <div class="we-adopt-list">
      <ul>
        <li><span>Mental agility</span></li>
        <li><span>Emotional agility</span></li>
        <li><span>Trust</span></li>
      </ul>
    </div>
  </div>
</section>