How to better organize view/cards...?

I have a sensor showing temp.; pressure, humidity. Plus graphs of each…
But when I place all in one view/screen - cards are cut and not so visible…

How to better organize that?
Some real code/example?

There is still something - not visible, down the screen…

You might try a couple of horizontal stacks inside a vertical stack. This will ensure that all the cards in a row are the same size, though the whole lot may still be too big for the screen. Here’s one of my dashboards:

type: vertical-stack
cards:
  - type: horizontal-stack
    cards:
      - type: custom:mini-graph-card
        name: Ground floor
        entities:
          - entity: sensor.living_room_motion_sensor_temperature
          - entity: sensor.kitchen_motion_sensor_temperature
        line_width: 2
        show:
          labels: true
          points: true
      - type: custom:mini-graph-card
        name: First floor
        entities:
          - entity: sensor.wirelesstag_hallway_thermostat_temperature
          - entity: sensor.study_motion_sensor_temperature
          - entity: sensor.bathroom_motion_sensor_temperature
        line_width: 2
        show:
          labels: true
          points: true
      - type: custom:mini-graph-card
        name: Top floor
        entities:
          - entity: sensor.bedroom_motion_sensor_temperature
          - entity: sensor.landing_motion_sensor_temperature
          - entity: sensor.wirelesstag_roofspace_temperature
        line_width: 2
        show:
          labels: true
          points: true
  - type: horizontal-stack
    cards:
      - type: custom:mini-graph-card
        name: Bedroom IT cupboard
        entities:
          - entity: sensor.wirelesstag_bedroom_it_cupboard_temperature
        line_width: 2
        show:
          labels: true
          points: true
      - type: custom:mini-graph-card
        name: Study IT cupboard
        entities:
          - entity: sensor.wirelesstag_it_cupboard_temperature
        line_width: 2
        show:
          labels: true
          points: true
      - type: custom:mini-graph-card
        name: Printer cupboard
        entities:
          - entity: sensor.wirelesstag_printer_cupboard_temperature
        line_width: 2
        show:
          labels: true
          points: true

Since this is a single card you can display it as a panel to make better use of the whole screen.

O.K. I’ll try… Thx…