简体   繁体   中英

Rotate container with child elements

I'm trying to reconstruct this sidenav_example

This is my html and SCSS:

HTML:

<div class="sidenav-container">
  <div class="sidenav-item" *ngFor="let sidenavItem of sidenav">
    <span>{{ sidenavItem.text }}</span>
    <img [src]="sidenavItem.img" />
  </div>
</div>

SCSS:

.sidenav-container {
  position: absolute;

  .sidenav-item {
    align-items: flex-start;
    transform: rotate(270deg);
    display: flex;

    img {
      width: 5px;
      height: auto;
    }

    span {
      font-size: 2.5pt;
    }
  }
}

If i do it like this i always get this result my_example

Thanks for your help! :)

Try adding:

transform: rotate(90deg);

To 'sidenaev-container' class at your .scss

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM