Skip to content

Instantly share code, notes, and snippets.

@santheo
Created October 10, 2013 01:54
Show Gist options
  • Select an option

  • Save santheo/6911844 to your computer and use it in GitHub Desktop.

Select an option

Save santheo/6911844 to your computer and use it in GitHub Desktop.
.gray-box {
width: 200px;
height: 100px;
background: gray;
margin-top: 50px;
position: relative;
}
.red-box {
width: 50px;
height: 50px;
background: red;
position: absolute;
top: 0px;
right: 0px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Positioning</title>
</head>
<body>
<div class="gray-box">
<div class="red-box"></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment