add tag
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}
```

![image.png](/image?hash=e54386554832ad2e16770924e074f0869dd68783c957cfd94310fb5c1a499d71)
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}
```


![Screenshot 2025-07-01 at 10.23.28.png](/image?hash=24c578be1e0fce1cb49c55833bc4c189ca43a0f08c754ca49604dbb0399b5abe)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.