我正在尝试使用 JasperReports 模板在 Eclipse 中生成报告。本质是什么:有一个基于 50 000 条记录的基础。您需要为每个条目制作报告。那些。参数(字段)是一样的,只是值发生了变化。当试图做这样的事情时,jasper 只是按顺序显示所有条目,如果它们离开详细信息部分,它们会转到一个新页面。可以吃一个选项怎么可能分别生成每个报告?
主页
/
user-337558
Товарищ_Котейка's questions
请帮忙,我无法弄清楚问题所在。有一个页面,我在其中添加了三个块并在 css 中为它们分配属性:
.div_1 {
position: absolute;
background: #000;
height: 66px;
width: 100%;
left: 0%;
right: 0%;
top: 0%;
bottom: 0%;
z-index: 2;
}
.div_2 {
position: absolute;
background: #29313C;
height: 100%;
width: 80px;
left: 0%;
right: 0%;
top: 0%;
bottom: 0%;
z-index: 1;
}
.div_3 {
position: absolute;
background: #f2f2f2;
height: 92.85%;
width: 95.5%;
left: 80px;
right: 0%;
top: 66px;
bottom: 0%;
z-index: 1;
}
<html>
<head>
<link href="test.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="div_1"></div>
<div class="div_2"></div>
<div class="div_3"></div>
</body>
</html>
事实证明,当我缩小浏览器窗口时,div_3 超出了 div_1 的大小。告诉我可能是什么问题?