This is my unique code:
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
<div style="border-bottom:1px solid black">
<div style="width=50%;float:left">A new paragraph with unspecified margins
<br>
<br>Another paragraph with a 2cm left margin.</div>
<div style="width=50%;margin-left=51%">A different paragraph with no margin specified.</div>
</div>
</body>
</html>
I am attempting to add a border at the bottom of the outer div, but it always displays after the first inner div. Is there an issue with the code for the border?