I have a title and date section with two lines of text for my small blog. I need to reduce the vertical space between them so that they are closer together. Currently, there is a large gap. What is the best way to fix this? I've tried adjusting the position property before, but it caused issues with the overall layout of my website. I'd rather avoid changing it if possible. Thank you!
.StoriesTitle {
font-size: 25px;
margin-left: 23%;
height: 10px;
}
.chinese {
font-family: "Yu Gothic";
font-weight: normal;
}
.StoriesDate {
padding-bottom: 10pt;
font-size: 12pt;
margin-left: 1pt;
}
<section class="stories">
<div class="StoriesTitle">
<h2>Title Length</h2>
<div class="StoriesDate">
<h3>2018<span class="chinese">年</span>09<span class="chinese">月</span> 28<span class="chinese">日</span</h3>
</div>
</div>
</section>