- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试构建一个由 4 个 DIV 组成的金字塔。布局如下所示:
------
| #1 |
------
----------------
| #2 | #3 | #4 |
----------------
此外,我需要 3 个额外的 DIV,从中心 DIV (#3) 开始,另外包含 #1、#2 或 #3。这些 DIV 用于稍后使用 jQueryUI 构建滑动效果。它应该看起来像 #1、#2 和 #4 从 #3 中滑出。
DIV 之间的边距应该是 2 个像素。我还希望整个 block 居中。
即使有 display: inline;和position:absolute;在可见和不可见的 DIV 上启用我无法正确布局。我使用了一些负边距,当它第一次看起来不错时,我看到我的顶部 DIV 位于 html 主体之外。
我想有一种更简单优雅的方法可以实现我想要的。
关于这个特定问题或您看到的可以改进我的 CSS 的任何建议都非常受欢迎。提前致谢
塞巴斯蒂安
这是我到目前为止所得到的:
HTML:
<div id="centerbox">
<div id="main">main</div>
<div id="rail_top">
<div id="top">top</div>
</div>
<div id="rail_left">
<div id="left">left</div>
</div>
<div id="rail_right">
<div id="right">right</div>
</div>
</div>
CSS:
#centerbox {
height: 602px;
width: 904px;
margin-top: 640px;
margin-left: auto;
margin-right: auto;
}
/* blue */
#main {
background-color: #33F;
height: 300px;
width: 300px;
margin: 2px;
z-index: 9999;
position: absolute;
display: inline;
margin-left: 302px;
}
/* green */
#top {
background-color: #3F0;
height: 300px;
width: 300px;
z-index: 1;
position: absolute;
display: inline;
}
/* pink */
#left {
background-color: #F06;
height: 300px;
width: 300px;
z-index: 1;
}
/* orange */
#right {
background-color: #FC0;
height: 300px;
width: 300px;
z-index: 1;
margin-left: 302px;
}
#rail_top {
height: 602px;
width: 300px;
display: inline;
position: absolute;
margin-top: -300px;
margin-left: 302px;
}
#rail_left {
height: 300px;
width: 602px;
float: left;
position: absolute;
display: inline;
margin-top: 2px;
}
#rail_right {
height: 300px;
width: 602px;
float: right;
position: absolute;
display: inline;
margin-left: 302px;
margin-top: 2px;
}
最佳答案
我可能错过了一些你想要的属性,但试试这个:
HTML:
<div id="wrapper">
<div class="top">
top
</div>
<div id="bottom-wrapper">
<div class="rail_left">
left
</div>
<div class="rail_center">
center
</div>
<div class="rail_right">
right
</div>
</div>
<div class="clear"></div>
</div>
CSS:
#wrapper {
width: 904px;
height: auto;
margin: 640px auto 0 auto;
}
.top {
margin: 2px auto;
background-color: yellow;
height: 300px;
width: 300px;
}
#bottom-wrapper {
margin: 0 auto;
width: 904px;
height: auto;
}
.rail_left {
margin: 0 2px 0 0;
float: left;
height: 300px;
width: 300px;
background-color: red;
}
.rail_center {
margin: 0 2px 0 0;
float: left;
height: 300px;
width: 300px;
background-color: blue;
}
.rail_right {
margin: 0 auto;
float: right;
height: 300px;
width: 300px;
background-color: green;
}
.clear {
clear: both;
}
关于css - DIV 金字塔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2632776/
我想简化/减少我的代码,所以我尝试将具有重复参数的类的初始化放在它们自己的扩展类中。这是一个基于 Pyramid & Cornice 的 REST API。 我如何初始化 pyramid.httpex
我正在尝试构建一个由 4 个 DIV 组成的金字塔。布局如下所示: ------ | #1 | ------ ---------------- | #2 | #3 | #
我是 3d 绘图的新手。我只想用 5 个点 build 一个金字塔,然后从中切出一个平面。我的问题是我不知道如何填充边。 points = np.array([[-1, -1, -1],
我需要创建金字塔 slider 。 正如您在我当前的实现中看到的那样,我需要有一个位于其余元素顶部的中心图像。它们形成金字塔结构。图像也被放置在彼此下面,这种效果打破了一切,因为我需要转换它们(中心图
我一直在玩我在这里找到的演示:http://codepen.io/singhiskng/pen/dqiGj 我正在尝试制作一个 4 边形金字塔。
在jsp中实现如图所示的金字塔, 代码如下: 大致思路如下: 1、先画出前5行。因为 i+空格数=总行数,所以第一行的空格数是 总行数-i(第几行),然后画出 *,*的数目=2*i-11;
我在尝试找出一种使用用户输入创建金字塔的方法时遇到了很大的麻烦。它应该是这样的。 Enter a number between 1 and 9: 4 O O O O OOOO OOOO OOOO OO
我一直在寻找解决厄运金字塔的办法。到目前为止,我得出的结论如下: router.use('/create', function(res,req,next) { try { v
我刚刚开始处理。因此,我想创建一个函数,允许任何用户输入边数来创建 3D 金字塔。我正在使用处理 3。我需要一些帮助。提前致谢。我编写了一段目前有效的代码,但我想概括它。任何建议/提示将不胜感激。提前
我使用 JavaScript 创建了一个金字塔以下是我迄今为止使用 for 循环尝试的代码: function showPyramid() { var rows = 5; var ou
我被告知数据库超时(连接、交互、等待)设置为 30 秒。该数据库上有一个网站,人们往往会闲置超过 30 秒。 使用sqlalchemy,我需要在继续查询之前检查mysql连接是否仍然有效,否则站点会出
另一个棘手的问题。你在这里看到的是我的物理金字塔,它由 3 个 LED 构成,在 1 个平面上形成一个三角形,另一个 LED 在中间中心,比其他 3 个高约 18 毫米。第 4 个使三角形成为金字塔。
目标: 我正在尝试生成类似于下面给出的格式的金字塔。这需要一个基本的 Java 程序来接受用户输入、将数字转换为字符串、使用嵌套循环并生成格式化输出。下面是使用 8 行的所需输出示例。 Enter t
我的数据是多维组合数据(所有维度总和为 1 或 100)。我已经学会了如何使用三个变量来创建二维三元图。 我想添加第四个维度,使我的情节看起来像这样。 我愿意使用 python 或 R。我现在正在使用
我的数据是多维组合数据(所有维度总和为 1 或 100)。我已经学会了如何使用三个变量来创建二维三元图。 我想添加第四个维度,使我的情节看起来像这样。 我愿意使用 python 或 R。我现在正在使用
我是一名优秀的程序员,十分优秀!