I try to build a tabular with latex and experience a little overflow of the horizontal line on my tabular on the left. whatever I tried everything just switched the overflow so it sometimes happens on the right side and with other configurations, like shown, on the left. It's just about 1 mm but that shouldn't be...
Heres the code that procudes it:
\begin{table}[H]
\centering
\begin{tabular}{|l||p{10cm}|}
\hline
\textbf{Risikobeschreibung} & xyz\\
\hline
\textbf{Auswirkungen} & xyz\\
\hline
\textbf{Warnzeichen} & xyz\\
\hline
\textbf{Eintrittswahrscheinlichkeit} & xyz\\
\hline
\textbf{Vermeidungsstrategie} & xyz\\
\hline
\textbf{Maßnahmen bei Eintreten} & xyz\\
\hline\hline
\end{tabular}
\caption{Risikoanalyse}
\label{tab:Risikoanalyse}
\end{table}

Hope you can see it on the image.

\usepackage{array}as that changes the rule positioning logic as well as its other table extensions. – David Carlisle Jan 31 at 21:48