聞きたいこと
黒色のclass="footer"をどのようにすれば下に持っていけるのでしょうかに持っていけるのでしょうか?
test.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>test</title> <link rel="stylesheet" href = "test.css"> </head> <body> <header class ="header"> <div class= "header-left"></div> </header> <div class ="contents"> <div class ="left-content"></div> <div class = "contents-main"> <footer class="footer"></footer> </div> </div> </body> </html>
test.css
html, body{ height: 100%; margin: 0; padding: 0; } .header{ background-color: blue; height:180px; width: calc(100%-300px); } .header-left{ background-color:pink; float:left; height:180px; width:300px; } .contents{ background-color:grey; height: calc(100vh - 240px); width:100%; float:left; } .left-content{ background-color:red; height: calc(100vh - 180px); float:left; width:300px; } .contents-main{ height:100vh; } .footer{ background-color:black; width: calc(100%-300px); height:60px; }
回答1件
あなたの回答
tips
プレビュー