I'd like to have the first line of the node centered vertically with the object (here: a line) on the left of it. How can I do that?
Of course I could split the elements into several parts and then fine-tune the little bits, but I would really like to use a solution that does not include manual shifting.
Picture

MWE
\documentclass{standalone}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage{
tikz,
}
\usetikzlibrary{
intersections,
calc
}
\begin{document}
\begin{tikzpicture}[font=\small]
\draw
(0,0) coordinate (A)
(1,0) coordinate (B)
;
\draw[thick] (A) -- (B) node[right, text width=5cm] {Words Words Words Words Words Words };
\end{tikzpicture}
\end{document}
anchor=mid west) solved the problem in an instant. – henry Sep 16 '14 at 16:08