I wonder why node's text of node positioned by fit is not centered?
Edit: As suggested Peter Grill in his comment, I change previous MWE with more realistic example:
\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{chains,fit,positioning}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\begin{document}
%%%% se-fit
\begin{tikzpicture}[
every label/.append style = {label distance=1mm, inner ysep=0mm,
font=\scriptsize\sffamily, text=blue!50!black,
align=center},
node distance = 0mm,
start chain = going right,
N/.style 2 args = {name=n#1,
minimum width=#2,
draw, text height=2ex, text depth=1ex,
inner sep=2mm, outer sep=0mm, on chain}
]
\node[N={1}{11mm},draw=none,fill=blue!10] {};
\node[N={2}{11mm},draw=none,fill=blue!20] {};
\node[draw,inner sep=0pt, outer sep=0pt,
fit=(n1) (n2),
label=above left:{bits:},
label=above:144] {preamble};
\node[N={3}{11mm},fill=blue!20,right=of n2,
label=above:8] {signal};
\node[N={4}{11mm},fill=blue!20,
label=above:8] {service};
\node[N={5}{11mm},fill=blue!20,
label=above:12] {length};
\node[N={5}{7mm},fill=blue!20,
label=above:16] {FCS};
\node[N={6}{55mm},
label=above:<length> octets] {payload};
\end{tikzpicture}
%
\end{document}
Is this a features or it is bug? I wonder, why node, when is placed by fit option behavior differently when is positioned at some coordinate.

Put a node text as label text at center node is not convenient since real pictures have many labels with common option settings as show MWE above and also many similar construction of nodes (not shown in MWE).
The Peter Grill suggestion to use another node for text solve the problem, but my primary question remain unanswered.

\documentclass[tikz,border=3mm]{standalone} \usetikzlibrary{fit} \begin{document} \begin{tikzpicture} \node [fill=blue, text opacity=.5] (a) {aby}; \node [draw, fit=(a)] (c) {aby}; \end{tikzpicture} \end{document}– cfr Nov 06 '14 at 00:14label=center:preambleisn't a good option... (Even though I agree that the behaviour is at least odd.) Is it just to avoid having to override default options for styling other labels? – cfr Nov 06 '14 at 02:32