1
Hyperion May 11, 2011
红色的那块?... 是带fixed样式的背景图片吧
|
2
xiluo May 11, 2011
有可能是html5的新特性就支持呢
|
4
napoleonu May 11, 2011
.element:before {
position: absolute; z-index: 2; top: 0; left: -1.15em; height: 2em; width: 0.9em; background: #EEEEFF; content: ' '; border-style: none none solid solid; border-color: #9999FF; border-width: 0.25em; } |
5
napoleonu May 11, 2011
h4 + .element, h4 + div + .element { margin-top: -2.5em; padding-top: 2em; }
再结合这一行,就把h4放在了凸出来的那一行了。 |
9
napoleonu May 11, 2011
嘿嘿,用Chrome Inspect element很方便。
|
10
heckthisplace May 11, 2011
看半天没找到楼主说的地方。
|
12
holystrike May 11, 2011
@napoleonu 加号表示什么意思啊
|
13
napoleonu May 11, 2011
@holystrike 相邻兄弟选择器(Adjacent Sibling Selectors)
|