css background-position与外部div的背景颜色冲突

时间:2014-09-19 07:17:06

标签: html css css3

Css背景位置与外部div的背景颜色冲突

即:

 background-color: yellow;
 background-position: xxxxx;

JSFIDDLE

症状:第2行注释会影响按钮动画。

请取消注释第2行以查看冲突。

1 个答案:

答案 0 :(得分:4)

已完成更改。

<强> CSS

#content {
     background-color: yellow;
     position: relative;       /* make position relative  */
     z-index: 0;               /* reduce the z-index */
}

<强> Working Fiddle