1

嗨,我正在尝试使用 DisclosurePanel()。

我有2 DisclosurePanel()。当我打开第一个DisclosurePanel()时,第二个DisclosurePanel()从原始位置移动并从第一个DisclosurePanel()大小的末尾开始。

我想做的是

第一个 DisclosurePanel() 应该与第二个 DisclosurePanel() 重叠。

原来的

> Music //1st DisclosurePanel()
> Image  //2nd  DisclosurePanel()

打开后

v Music





> Image

我想要的是

v Music // display panel
> Image
4

1 回答 1

0

Thats not how DisclosurePanel works out of the box -- but it should be possible to fake it:

.panel td:last-child {
  position: absolute;
  width: 600px;
  background-color: #fff;
  left: 400px;
  margin-top: -30px;
}

Set that css class on the panel (and modify the width, left and margin-top properties).

于 2012-06-19T13:15:44.347 回答