Learning the ropes of CSS, I am currently working on a project to divide the screen into two parts and position text on the left and right sides. Strangely, the text on the right side doesn't span the entire width of the screen, only about 200-300 px...
Here is the JSFiddle link for reference: https://jsfiddle.net/19mw8hzL/
The black text should extend all the way to the right edge of the screen.
<div class="wrapper">
<div id="one">
<p class="w-text-1">Strategy</p>
</div>
<div id="two">
<ul>
<li><a href="#">Visioning</a></li>
<li><a href="#">Strategic Analysis</a></li>
<li><a href="#">Strategy Formulation</a></li>
<li><a href="#">Business Model Innovation</a></li>
<li><a href="#">Financial Modeling</a></li>
</ul>
</div>
</div>