2014-09-19 108 views
1
与外div的背景色

CSS背景位置冲突CSS背景位置冲突

即:

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

JSFIDDLE

症状:线2条评论会影响按钮动画。

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

+3

对不起,我不明白你的问题?这些按钮在JSFiddle中看起来很好? – 2014-09-19 07:19:41

+0

耶是最新错误?这些都是那个小提琴中的一些不错的按钮 – 2014-09-19 07:21:10

+1

它在铬合金中看起来不错。你使用哪个操作系统/浏览器? – Anton 2014-09-19 07:22:24

回答

4

更改完成。

CSS

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

Working Fiddle