Why when do I go below 480px the four column doesn't stack one above another? The other three breakpoints work well but when I go below 480px the colums remain as they are located at sm breakpoint.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Test File</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3" style="background:red">
column-1
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3" style="background:yellow">
column-2
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3" style="background:orange">
column-3
</div>
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3" style="background:aqua">
column-4
</div>
</div>
</body>
<script src="js/jquery.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</html>