垂直<hr>向下推动<h2> [重复]

第一次在这里发布。 我正在尝试在两个标题标签之间获得2条垂直线,但是它一直将标题向下推...反正我可以解决这个问题吗? 我尝试使用“ align-content:fex-start”和“ padding-top:10px”。

visual example of problem

HTML和CSS

   <hr class="vertical-hr">
   <h2 class="inline-h">200+<br />Pack<br />Downloads</h2>
   <hr class="vertical-hr">
   <h2 class="inline-h">7<br />Content<br />Packs</h2>

(CSS)

   .inline-h {
   display: inline-block;
   width: auto;
   padding: 5px;
   }
   .vertical-hr {
   display: inline-block;
   height: 125px;
   }