Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
  <style type="text/css">
#feeds {
  border: 2px solid #333;
  width: 200px;
  height: 200px;
  overflow: hidden;
  padding: 10px;
  margin: 0 auto;
}
#feed1 {
  background: red;
  width: 200px;
  height: 200px;  
  margin: 0 auto;
  position: absolute;
  display: block;
  z-index: 3;
}
#feed2 {
  background: green;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: absolute;
  display: block;
  z-index: 2;
}
#feed3 {
  background: blue;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  position: absolute;
  display: block;
  z-index: 1;
}
</style>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
</style>
</head>
<body>
  <div id="feeds">
<div id="feed1"></div>
<div id="feed2"></div>
<div id="feed3"></div>
</div>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers