I want to split a node into 3 parts: firstly split it vertically equally, then split the bottom one into 2 box horizontally and equally.
What's the best solution for such case in tikz? Maybe we can just draw 3 box and align it carefully but the align task seems difficult for me:)
Below is a test code but it seems B and C not align bottom of A and not split equally:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows,shadows,positioning}
\usepackage{amsmath,bm,times}
\usepackage{verbatim}
\usepackage[active,tightpage]{preview}
\PreviewEnvironment{tikzpicture}
\setlength\PreviewBorder{5pt}
\begin{document}
\tikzstyle{box}=[draw, fill=pink!10, minimum width=5em,
text centered, minimum height=2.5em,drop shadow]
\begin{tikzpicture}[node distance=0cm,outer sep = 0pt]
\node (A) [box,text width=10em] {A};
\node (B) [box,below= of A.south west,anchor=west] {B};
\node (C) [box,below= of A.south east,anchor=east] {C};
\end{tikzpicture}
\end{document}
The output picture looks like below:


