Can anyone help me figure out why my divs are displaying differently on PC versus phone? They line up well on the computer, but on the phone, the last div is on a new line. Here is a snippet of my code and screenshots for reference. Thank you in advance for any assistance!
<div class="Ctoplinks">
<div style="margin-left:0px;">
Link
</div>
<div>
Link
</div>
<div>
Link
</div>
<div>
Link
</div>
<div>
Link
</div>
</div>
.Ctoplinks{
margin: 20px auto;
width: 720px;}
.Ctoplinks div{
background-color: black;
box-shadow: 0px 0px 20px 3px #37475a;
border: 2px solid #37475a;
padding: 2px;
display: inline-block;
width: 120px;
margin-left: 16px;
font-size: 11px;
text-transform: uppercase;
text-align: center;}