Currently, I am working with Bootstrap V4 and I am facing an issue where I need a customized paragraph to have a line-height of 1. However, I have been unsuccessful in overriding the default Bootstrap setting of approximately 1.5.
<p class="ptime"><f:format.date format="H:i:s">{play.plDate}</f:format.date></p>
<p class='dur'>{play.Duration}</p>
p.ptime {
line-height:normal !important;
}
p.dur {
font-size: 80%;
text-align: right;
vertical-align: text-bottom;
padding: 0px;
margin: 0px;
line-height:normal !important;
}
I have attempted using 1 and 1em for the line-height, but have had no success in reducing the space between the paragraphs (lines).
Can anyone provide guidance on how to resolve this issue?