I have used colour to mark some cells in a table, but the final cell (right, bottom) seems to "overflow".
\documentclass[nols,notitlepage,openany,12pt,table,xcdraw]{tufte-handout}
\usepackage{geometry}
\geometry{a4paper,bottom=1.5in}
\usepackage{fontspec}
\setmainfont[Mapping=tex-text,Numbers=OldStyle]{Minion Pro}
\setsansfont[Mapping=tex-text,Numbers=OldStyle]{Gill Sans}
\usepackage{booktabs}
\usepackage{enumitem}
% \setlist{nolistsep} % or \setlist{noitemsep} to leave space around whole list
\setlist{noitemsep}
\usepackage{adjustbox}
\begin{document}
\begin{table}[h!]
\begin{tabular}{@{}lllll@{}}
2020 & 2021 & 2022 & 2023-25 & 2025-2030 \\ \midrule
\multicolumn{5}{l}{\cellcolor[HTML]{EFEFEF}Individuella ansökningar} \\
& \multicolumn{4}{l}{\cellcolor[HTML]{EFEFEF}Gemensamma ansökningar} \\
& & \cellcolor[HTML]{EFEFEF}Strategisk publicering & \cellcolor[HTML]{EFEFEF}Programansökan & \\
& & & & \cellcolor[HTML]{EFEFEF}Lansering av institut
\end{tabular}
\end{table}
\end{document}
Output:
It does not solve itself by writing less in the final cell.


@{}use\multicolumn{1}{>{\columncolor[HTML]{EFEFEF}}{l@{}}instead of\cellcolor– David Carlisle Sep 24 '19 at 13:59