Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Fixed position</title>
</head>
<body>
    <div class="fixed">
        <p><a href="http://jsbin.com/juwazona/4/edit" target="_blank">Edit source</a>
        </p>
        <p>position:fixed is positioned relative to the viewport. it stays in the same place even with page scroll, and is removed from the normal flow.</p>
    </div>
</body>
</html>
 
body {
  margin: 0;
  padding: 0;
  height: 1000px;
  border-left: 20px dotted #333;
}
.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background-color: purple;
  color: #fff;
  padding: 5px;
}
.fixed a {
  color: #fff;
}
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers