CSS Layout How to - Stick to right top corner








Question

We would like to know how to stick to right top corner.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#side {<!--   w  ww. j  av a2s  . co m-->
  width: 200px;
  height: 500px;
  float: right;
  background-color: #EEE;
}

#content {
  height: 1000px;
  background-color: #AAA;
}
</style>
</head>
<body>
  <div id="side"></div>
  <div id="content"></div>
</body>
</html>

The code above is rendered as follows: