I would like to align boxes and arrows all nice & straight. I have tried to play with padding and such but it does not seem to function well.
HTML:
<div class="listBox">
<p>Course ID: COMP108<br/>Course Name: Computer_Science_Industrial<br/>_Experience_Reflective_Learning_I<br/>Credits: 3<br/>Pre-Requisite: NONE<br/>Co-Requisite: NONE</p>
</div>
<img src="../img/arrowRight.png" width="4%" style="padding: 40px;">
<div class="listBox">
<p>Course ID: COMP201<br/>Course Name: Computer_Science_Industrial<br/>_Experience_Reflective_Learning_II<br/>Credits: 3<br/>Pre-Requisite: MATH201<br/>Co-Requisite: NONE</p>
</div>
<img src="../img/arrowRight.png" width="4%" style="padding: 40px;">
<div class="listBox">
<p>Course ID: COMP248<br/>Course Name: Object-Oriented_<br/>Programming_I<br/>Credits: 3<br/>Pre-Requisite: MATH204<br/>Co-Requisite: COMP201</p>
</div>
CSS:
.listBox{
background-color: rgba(245, 246, 250, 0.7);
border-radius: 15px;
display: inline-block;
width: 25%;
margin-right: -4px;
z-index: -1;
padding: 8px;
}
.listBox p{
font-size: 11px;
font-family: Courier;
}
