Consider the snippet below (compiled with PDFLatex TexLive 2015).
Why is DocumentViewer (3.18.2, Ubuntu 16) displaying a thin line (some zoom levels)? I have set the outer/inner sep to 0. Is this a flaw in PDF-rendering or has this TiKZ snippet an issue?
\documentclass{book}
\usepackage{tikz}
\usetikzlibrary{fit}
\begin{document}
\begin{tikzpicture}
\node[inner sep=0mm, outer sep=0mm, fill=blue,minimum width=5cm,minimum height=5cm] (first) at (10,10) {};
\node[inner sep=0mm, outer sep=0mm, fill=blue,minimum width=5cm, fit=(first.north)(first.south),anchor=east] (second) at (first.west) {};
\end{tikzpicture}
\end{document}



line width=0,draw=blueoption to your nodes... – Paul Gaborit Sep 29 '16 at 22:26