Control Number of Columns Inside Tabs

Do you mean placing them side by side? Have you tried the code below?

html.Div([
        html.Div([
            ...
        ], className="six columns"),

        html.Div([
            ...
        ], className="six columns"),
    ], className="row")
])