表形式の垂直間隔、hyperref パッケージ

表形式の垂直間隔、hyperref パッケージ

このコードをコンパイルしています:

\documentclass{article}
\usepackage{hyperref}

\newcounter{MS} %\renewcommand*{\theMS}{MS\arabic{MS}} % milestones

\begin{document}

\begin{tabular}{p{2cm}|l}
No. & Title \\
\refstepcounter{MS} \theMS \label{MS1} & this line takes too much vertical space  
\\
-- & this one is OK  
\\
\refstepcounter{MS} \theMS \label{MS2} & this line takes too much vertical space
\\
\end{tabular}

Reference to the first row: \ref{MS1}.
I need package hyperref for \url{url.com} 
\end{document}

歩数カウンターがある行では、垂直方向のスペースを使いすぎるテーブルが表示されます。

ここに画像の説明を入力してください

これを削除する方法を誰かアドバイスしてもらえますか? パッケージを削除するとhyperref正常に動作しますが、ドキュメント内の他の目的にそのパッケージが必要です。

関連情報