-3

如何使手风琴完全透明,在 Css 中

我试过了:

[CSS]

 #accordion {
    font-family: Calibri;
    font-size: 12px;
    width: 1000px;
height: 400px;
  background-image: transparent;
-webkit-box-shadow: 0 0 5px 5px#888;
box-shadow: inset 0 0 8px lightgray,
            1px 1px 3px darkgray;
}

[html]

<div id="accordion" >
All the information goes here!
</div>

有人可以指出我正确的方向吗?

PS:如果你忍不住停止对我的评价。

4

2 回答 2

0

为了使 CSS 中的元素完全透明,我会这样做

visibility: hidden;

与 相比display: none,这仍然使 div 标签占用空间。它只是没有渲染。

如果这不是您的想法,请告诉我。

于 2013-07-30T22:52:34.523 回答
0

看起来您正试图摆脱背景图像。的默认background-image值为none。试试这两种风格:

background-color: transparent;
background-image: none;
于 2013-07-31T01:01:30.550 回答