[Tex/LaTex] positioning table inline with text

inline()tables

I have following piece of code:

\section{Skills}
\begin{CV}
\item[Computing:] C/C++, Python and Matlab
\item[CAD Tools:] GNU Radio, Xilinx ISE, Active HDL, MikroC, Keil uVision, Altium Designer, Cadence VIRTUOSO
\item[Languages:] AAA
\begin{table}[h] %\centering
\begin{tabular}{p{2cm}>{\bfseries}p{2.5cm}p{3cm}}
& German  & native \\
& French  & near native \\
& Dutch & near native\\
& Italian & fair \\
\end{tabular}
\end{table}
\end{CV}
\pagebreak

The problem is that table with the languages is placed in the way that top and bottom of the table is equally distanted from the line of the item title. i want top left corner of the table to be in the place where would be the first letter of the normaln item text.

Thanks

Best Answer

Remove the \begin{table}[h] %\centering and \end{table} as you do not want a float and use

AAA \begin{tabular}[t]{p{2cm}>{\bfseries}p{2.5cm}p{3cm}}

Then the first row of the table will share a baseline with AAA