初歩的なのですがheader, footer, side bar 2つ の間にdiv3つはさむ構造にしたいのですが、以下のコードで崩れてしまいます どこがちがうでしょうか?
<DOCTYPE> <html> <head> <meta charset="UTF-8"> <link rel="stylesheet" href="css3.css"> <title>test3</title> </head> <body> <div class="head"></div> <div class="side1"></div> <div class="in1"></div> <form action="pdo_insert.php" method="post"> <input type="text" name="name" size="10" maxlength="10"> <input type="submit" value="送信する"> </form> <div class="in2"></div> <div class="in3"></div> <div class="side2"></div> <div class="foot"></div> </body> </html>.head {
width: 100%;
height: 20%;
background-color: black;
}
.side1 {
width: 20%;
height: 60%;
background-color: red;
}
.in1 {
width: 80%;
height: 20%;
background-color: blue;
}
.in2 {
width: 80%;
height: 20%;
background-color: green;
}
.in3 {
width: 80%;
height: 20%;
background-color: yellow;
}
.side2 {
width: 20%;
height: 60%;
background-color: black;
float: right;
}
.foot {
width: 100%;
height: 20%;
background-color: black;
}
回答1件
あなたの回答
tips
プレビュー