You can add css
like below. Update your dt
and dd
width as per your requirement.
There may apply some default margin
to these elements so it may possible that if you make widht
sum 100%
then it will display dd
on next line.
dt {
width: 30%;
display: inline-block;
}
dd {
width: 60%;
display: inline-block;
margin: 0px;
}
<div style="margin-left:100px">
<hr />
<dl class="horizontal">
<dt>Patient_Name</dt>
<dd>abc</dd>
<dt>Patient_No</dt>
<dd>123</dd>
</dl>
</div>