Skip to content

Instantly share code, notes, and snippets.

@dennispipper
Created March 20, 2015 17:32
Show Gist options
  • Save dennispipper/6b29369472794e6bd1c5 to your computer and use it in GitHub Desktop.
Save dennispipper/6b29369472794e6bd1c5 to your computer and use it in GitHub Desktop.
seventh2.html
<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8">
<style type="text/css">
.float {
float: left;
margin: 0px;
width: 200px;
color: #FFF;
background-color: #9D080D;
}
p {
border: 1px solid red;
height: 100px;
}
</style>
</head>
<body>
<p>P1</p>
<p class="float">P2</p>
<p class="float">P3</p>
<p class="float">P4</p>
<p class="float">P5</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment