I am struggling with getting the layout of the header i have in mind together.
The html
<div id="header">
<img src="/img/headerBg.jpg" alt="" class="headerBg" />
<a href="/"><img src="/img/logo.png" alt="Logo" class="logo" /></a>
<div id="loginBox">
other code
</div>
</div>
至今为止各点:
#header {
height: 130px;
margin: 5px 5px 0 5px;
border: #0f0f12 outset 2px;
border-radius: 15px;
}
#loginBox {
float: right;
width: 23.5%;
height: 128px;
font-size: 75%;
}
.headerBg {
}
.logo {
width: 50%;
height: 120px;
float: left;
display: block;
padding: 5px;
}
我正试图完成的工作是,“头盔”的形象显示为“头盔”的100%宽度,因此,这从根本上来说将是四舍五入的背景。 然后,图像“logo.png”和div“loginBox”显示在“headerBg.jpg”之上。
标识应移至遥远的终点和标志 盒子的权重于 c。
由于图像被抹去,标识和碎块被正确定位,但当图像被引入时,两个浮标的物品被放在流体图像之后。
我尝试了各种补充和重新配置,但没有人证明我是如何想到的。
我在座标上添加了图像,作为头盔的背景资料,但这样一来不会超过100%。
谁能对此提供某种见解?
此外,任何涉及类似情况的辅导,都将是我的收集工作的重要补充!
谢谢!