I'm using a table to put two tables to one row and fit them to 2 minipages which are set to 70% and 30%:
\begin{table}[htb]
\begin{minipage}{.7\textwidth}
TABLE_1
\end{minipage}
\begin{minipage}{.3\textwidth}
TABLE_2
\end{minipage}
\end{table}
I need a better solution, if exists something like CSS in HTML.
My next problem is that I'm using \resizebox to achieve 100% width of each table in each minipage, e.g.:
\begin{table}[htb]
\begin{minipage}{.7\textwidth}
\centering
\resizebox{\textwidth}{!}{%
TABLE_1
}
\end{minipage}
\begin{minipage}{.3\textwidth}
\centering
\resizebox{\textwidth}{!}{%
TABLE_1
}
\end{minipage}
\end{table}
But in this way I can not change the font size. Font size is set automatically according to the width and height of the table in each cell. So sometimes it is big sometimes very small.
Solution is e.g.:
\begin{table}[htb]
\begin{minipage}{.65\textwidth}
{\tiny
\begin{tabularx}{\textwidth}{XXX}%
AAA & BBBB & CCCC \\
\hline
AAA & BBBB & CCCD
\end{tabularx}%no space between tables
}
\end{minipage}
\hfill
\begin{minipage}{.25\textwidth}
\begin{tabularx}{\textwidth}{XXX}%
AAA & BBBB & CCCC \\
\hline
AAA & BBBB & CCCD
\end{tabularx}%no space between tables
\end{minipage}
\end{table}
\hfill helps to make spaces between the two tables. Flush left and right are now also true. Thank you for your suggestions.
Some other problems I had are solve now with this.