Skip to content

Instantly share code, notes, and snippets.

@TaopaiC
Created December 8, 2010 03:09
Show Gist options
  • Save TaopaiC/732829 to your computer and use it in GitHub Desktop.
Save TaopaiC/732829 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Float</title>
<style type="text/css">
#bigbox {
background-color: #555;
min-width:120px;
}
#littlebox {
background-color: #000;
width: 100px;
height: 100px;
float: right;
}
</style>
</head>
<body>
<div id="bigbox">
<div id="littlebox">
<br/> <br/> <br/> <br/>
</div>
</div>
</body>
</html>
<html>
<head>
<title>Float</title>
<style type="text/css">
#bigbox {
background-color: #555;
width:120px;
}
#littlebox {
background-color: #000;
width: 100px;
height: 100px;
float: right;
}
</style>
</head>
<body>
<div id="bigbox">
<div id="littlebox">
<br/> <br/> <br/> <br/>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment