これは私のHTML/CSSが現在どのように見えるかです:
これが私が望むものです:
以下の HTML/CSS を変更して、希望どおりに表示するにはどうすればよいですか?
HTML:
<div id="panel">
<div id="bottom">
<div class="update"></div>
</div>
</div>
CSS:
.update {
width: 100%;
background-color: #006699;
text-align: center;
height: 56px;
color: white;
}
#bottom {
position: absolute;
bottom: 20px;
width: 100%;
left: 0;
}
#panel {
width: 21.25%;
height: 100%;
background-color: #0794ea;
float: left;
padding: 0 1.5%;
-moz-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}
ありがとう