In my Laravel project, I am facing an issue with the patient history form. The content overflows under a div as shown in the image below.
To address this problem, I tried using overflow:hidden
in the CSS section. However, this caused my content to disappear, as illustrated in the second image below.
Below is the HTML code snippet:
<div class="row">
<div class="col-md-2"><b> Chief Complains : </b></div>
<div class="col-md-10"> {!! $data[0]->chief_complaints !!} </div>
</div>
Can anyone help me with resolving this issue? Your assistance would be greatly appreciated. Thank you in advance!