79349857

Date: 2025-01-12 12:12:26
Score: 1.5
Natty:
Report link

It's not possible...

The right way it's to make it in css.

<div class="cards-container">
  @for(tool of toolsList.default; track tool.name) {
    <div class="m-1">
      ...
    </div>
  }
</div>
.cards-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Alexdu98