I want to place some tcolorbox next to each other but also provide breakable content.
Now without breakable the boxes are placed well but won't break the content on a new page:
\documentclass[10pt,A4]{article}
\usepackage[utf8]{inputenc}
\usepackage[most]{tcolorbox}
\usepackage{lipsum}
\begin{document}
\tcbset{myone/.style={colback=green,colframe=blue,equal height group=nobefaf,width=\linewidth/4,nobeforeafter}}
\begin{tcolorbox}[myone,title=Box 1]\lipsum\end{tcolorbox}
\begin{tcolorbox}[myone,title=Box 2]\lipsum\end{tcolorbox}
\begin{tcolorbox}[myone,title=Box 3]\lipsum\end{tcolorbox}
\begin{tcolorbox}[myone,title=Box 4]\lipsum\end{tcolorbox}
\end{document}
But if I introduce breakable to tcbset then there won't be any grouping anymore:
Are both functionalities contradicting each other so there won't be a solution at all or did someone found a way to get both to work?

