I have this code: https://jsfiddle.net/105nfcze/55/
#footer-a {
width: 50%;
background: black;
display: inline-block;
}
#footer-b {
width: 50%;
background: blue;
display: inline-block;
text-align: center;
}
<div class="content-wrapc">
<p id="footer-a"> Footer </p>
<p id="footer-b">
<a href="#">test 1</a>
<a href="#">test 12</a>
<a href="#">test 13</a> </p>
</div>
I have also followed this link: Display two divs next to each other where each has a width of 50%
I have also tried floating, as what is said in this link : How to place two divs next to each other?
But still I do not get the two p's places next to each other. I tried several things and looked up several QA's. Hope someone can advise and also explain why this happens..