I am currently working on a project where I want to implement horizontal scrolling using Bootstrap for items instead of the default vertical scrolling. Here is an example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-4" style="background-color:red;">item1</div>
<div class="col-sm-4" style="background-color:blue;">item2</div>
<div class="col-sm-4" style="background-color:green;">item3</div>
<div class="col-sm-4" style="background-color:yellow;">item4</div>
</div>
<div class="row">
<div class="col-sm-4" style="background-color:red;">item5</div>
<div class="col-sm-4" style="background-color:blue;">item6</div>
<div class="col-sm-4" style="background-color:green;">item7</div>
<div class="col-sm-4" style="background-color:yellow;">item8</div>
</div>
</div>
</body>
</html>
My goal is to make 'item4' and 'item8' visible only when users scroll left or right, but unfortunately with Bootstrap they are positioned below 'item1' and 'item5' respectively.