I need help with organizing an unordered list in two separate divs.
HTML
<div class="wee">
<ul>
<li>Apples</li>
<li>Ball</li>
<li>Apples</li>
</ul>
</div>
<div class="wee">
<ul>
<li>Apples</li>
<li>Ball</li>
</ul>
</div>
CSS
.wee{
height:100px;
width:100px;
position:relative;
background-color:rgba(176,137,138,1.00);
display:inline-block;
}
I'm having trouble aligning the lists properly.
I can't seem to figure out what's causing the alignment issue.