I'm having trouble setting the background on my page. The background works for another div on the same page, but not on the body background itself.
<!DOCTYPE HTML>
<html>
<head>
<title>iDeas.com</title>
<link rel="stylesheet" href="css/uikit.min.css"/>
<link href='http://fonts.googleapis.com/css?family=Dosis:500' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Shadows+Into+Light' rel='stylesheet' type='text/css'>
<script src="js/jquery.js"></script>
<script src="js/uikit.min.js"></script>
</head>;
<body background="background.jpg" style="font-family: 'Dosis', sans-serif;">
<div id="main_container" >
<div id="sub_container">
<div id="header_container">
<h1 class="uk-h1" style="font-family:'Shadows Into Light',cursive; font-size:110px;margin-left:29%;margin-top:120px;position:absolute;">Welcome To <span style="color:yellow">i</span>Deas.com</h1>
</div>
<div id="body_container">
<div id="form_container">
<div id="form_position" style="position:absolute; margin-left:42%; margin-top:300px;" >
<div class="uk-form" style="padding:50px 50px 50px 50px; background:url('img/triangle_bg.jpg'); border-radius:2px 2px 2px 2px;">
<form autocomplete="off" method="post">
<div class="uk-form-row">
<span class="uk-icon-user uk-icon-small" style="border-radius:5px 0px 0px 3px; padding:11px 14px 14px 17px; background:#E6E6E6;"> </span><input autocomplete="off" style="border-radius:0px 3px 3px 0px; font-family: 'Dosis', sans-serif; width:230px; height:45px; font-size:16px;" type="text" name="username" placeholder="Username" required="">
</div>
<div class="uk-form-row">
<span class="uk-icon-lock uk-icon-small" style="border-radius:5px 0px 0px 3px; padding:11px 14px 14px 19px; background:#E6E6E6;"> </span><input autocomplete="off" style="border-radius:0px 3px 3px 0px; font-family: 'Dosis', sans-serif; width:230px; height:45px; font-size:15px;" type="password" name="password" placeholder="********" required="">
</div>
<div class="uk-form-row">
<input class="uk-button" type="submit" name="login" value="Log In" style="width:280px; height:40px; font-size:20px; border-radius:3px 3px 3px 3px">
</div><br><br>
<div class="uk-form-row">
Don't have an account..? Register <a href="">Here</a>
</div>
</form>
</div>
</div>
</div>
</div>
<div id="footer_container">
</div>
</div>
</div>
</body>
</html>