Skip to content

Instantly share code, notes, and snippets.

@Himenon
Created September 8, 2015 13:30
Show Gist options
  • Save Himenon/8dd2a378a84604261996 to your computer and use it in GitHub Desktop.
Save Himenon/8dd2a378a84604261996 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.wrapper {
width: 1000px;
}
.container1, .container2 {
float: left;
width: 500px;
height: 500px;
}
.container1 {
background-color: red;
}
.container2 {
background-color: yellow;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="container1"></div>
<div class="container2"></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment