I am generating Russian table and row height issue. Below is part of my code (MWE).
\documentclass[11pt,table,a5paper]{article}
\usepackage{graphicx}
\usepackage[framemethod=TikZ]{mdframed}
\usepackage[top=2cm, bottom=2cm, outer=2.1cm, inner=1cm,twoside, headsep=26pt]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{longtable}
\usepackage[english,russian]{babel}
\usepackage{multirow}
\definecolor{textcol}{rgb}{0,.412,.651}
\definecolor{rowcol}{rgb}{.04, .55, .87}
\begin{document}
\newcolumntype{M}[1]{>{\centering\arraybackslash}p{#1}}
{\renewcommand{\arraystretch}{1.8}\begin{longtable} {|p{3.35cm}|M{1.3cm}|M{1.87cm}|}
\hline
\rowcolor{textcol} \textbf{\textcolor{white} {данные}}&\textbf{\textcolor{white}{данные}}&\textbf{ \textcolor{white} {Страница}} \\
\endfirsthead
\rowcolor{textcol} \textbf{\textcolor{white} {данные}}&\textbf{\textcolor{white}{данные}}&\textbf{ \textcolor{white} {Страница}} \\
\endhead
\hline
\rowcolor{rowcol}
\parbox[t][1.058cm]{3.4cm}{\raggedright развитие постоянных зубов} & N/A&19\\
\hline
\rowcolor{rowcol}
\parbox[t][1.058cm]{3.4cm}{\raggedright ожирение (в раннем детстве)} & N/A&24\\
\hline
\end{longtable}}
\end{document}linecolor=goldenpoppy

In the outout, row1 of table has more height than row2 while both are using same parameter 1.058cm. How can i fix this issue.

{minipage}[<vertical alignment>][<height>]{<width>}environment inside the table cells to control the height. – yori Dec 10 '13 at 08:28\vphantom{()}to the row without brackets helps. – jens_bo Dec 11 '13 at 10:28