[Tex/LaTex] hrulefill vertical spacing

rulesspacingvertical alignment

I want to reduce the vertical spacing that comes before and after \hrulefill. enter image description here
I have already tried different options with \hrule, which works fine except for the fact that the line doesn't end where the right margin starts (whereas \hrulefill does)
enter image description here

Here is the minimum example code :

\documentclass[margin]{res} 

\begin{document} 
\begin{resume} 
\section{EDUCATION}

{\bf University}, Town, Country \\
Degree Title \hfill {\bf{Date}} 
\begin{itemize}\itemsep -2pt
\item item 1
\end{itemize}

\hrulefill

\section{WORK EXPERIENCE}

{\bf Job} Town, Country \hfill {\bf{Date}} 
\begin{itemize}
\item item 1
\end{itemize}

\end{resume}
\end{document}

Best Answer

You can just insert negative \vspaces as needed, like in the example below:

enter image description here

\documentclass[margin]{res}

\begin{document}

\begin{resume}

\section{EDUCATION}

{\bfseries University}, Town, Country \\
Degree Title \hfill {\bfseries Date}
\begin{itemize}
  \itemsep -2pt
  \item item 1
\end{itemize}

\vspace{-\baselineskip}

\hrulefill

\vspace{-.7\baselineskip}

\section{WORK EXPERIENCE}

{\bfseries Job} Town, Country \hfill {\bfseries Date}
\begin{itemize}
  \item item 1
\end{itemize}

\end{resume}

\end{document}