CarLaTeX
I can't make the first (multi-row) cell top-aligned:
```
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{colspec={X[t]X[t]}, hlines}
\SetCell[r=3]{t}multi-row that should be aligned to the top &
one row\\
& something\\
& something\\
\end{tblr}
\end{document}
```

Top Answer
samcarter
You could use the `h` vertical alignment:
```
\documentclass{article}
\usepackage{tabularray}
\begin{document}
\noindent\begin{tblr}{colspec={X[h]X[t]}, hlines}
\SetCell[r=3]{} multi-row that should be aligned to the top &
one row\\
& something\\
& something\\
\end{tblr}
\end{document}
```
