HTML
!DOCTYPE html>
<html> <head> <meta charset="utf-8"> <title>確認問題</title> <link rel="stylesheet" href="style.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>CSS
html, body {
height: 100%;
margin: 0;
padding: 0;
}
.header{
background-color: blue;
position: fixed;
height: 180px;
width: 100%;
}
.header-left{
background-color: pink;
position: fixed;
height: 180px;
width: 300px;
}
.contents{
background-color: gray;
height: 100%;
width: 100%;
}
.left-content{
background-color: red;
height: 100%;
width: 300px;
;
}
.footer{
background-color: black;
float: right;
height: 60px;
width : calc(100% - 300px);
}
実装すると左下に空白が出来てしまします。
空白もleft-contentで赤くしたいのですがどうすれば宜しいでしょうか??
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/01 11:31
2020/05/01 11:36
2020/05/02 07:33