我正在尝试为 WP 模板创建此设计:http: //minus.com/lbi1iH25EcKsu7
现在我是这样的:http ://www.uncensuredftw.es/plantilla-blueftw/boilerplate/index.html
我认为您可以了解总体思路;)
我知道......这是我的错:浏览器从左到右计算窗口的大小,所以如果我设置一个边距,它会将 100% 大小的 div 向右移动。
但问题是:我不知道如何使它工作:(。
我想用 div 制作“黑条”(我画了那些不能用红色和橙色工作的),这个技巧奏效了……但只有左边的能像我想要的那样工作。
我没有想法了。我尝试了我能想到的一切,但没有任何效果。 也许你能帮助我?;)
这是html代码:
<div class="barraUL"></div><div class="barraDL"></div>
<div class="presentacionbg"></div>
<div class="presentacion">
<div class="barraUR"></div><div class="barraDR"></div>
这是CSS:
.barraUL {
position: absolute;
width: 50%;
height: 27px;
background-color: black;
right: 50%;
margin-right: 500px;
margin-top: -20px;
}
.barraDL {
position: absolute;
width: 50%;
height: 27px;
background-color: black;
right: 50%;
margin-right: 500px;
margin-top: 309px;
}
/* This next two are the ones than "doesn't work" */
.barraUR {
position: absolute;
width: 50%;
height: 27px;
background-color: red;
left: 50%;
margin-left: 500px;
margin-top: -4px;
}
.barraDR {
position: absolute;
width: 50%;
height: 27px;
background-color: orange;
left: 50%;
margin-left: 500px;
margin-top: 325px;
}