https://i.sstatic.net/dkRt3.png
The Divtag appears to be malfunctioning due to insufficient properties. I am currently unsure of how to resolve this issue and would appreciate any insights or opinions.
<div class="col boardsBox" style="margin-right:0.5%">
<h5 style="padding-top:2%">@lang('home/main.community')
<a href="{{ route('community.index') }}" class="btn btn-secondary float-right"><i class="fa fa-angle-right"></i></a>
</h5>
<hr>
<table>
<tbody>
@foreach($communities as $community)
<tr>
<td style="padding-top:0.5%; overflow:hidden;white-space:nowrap;text-overflow:ellipsis;">
<a class="boardsFont" href="{{ route('community.show',['boardNum'=>$community->num])}}">
<i class="fa fa-check-square"></i> {{ $conference->name}}
@if($community->comment_count != 0)
<span style="color:gray">({{ $community->comment_count }})</span>
@endif
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>