css - IE8 position bug -


all browsers works fine, except ie8. have slide, can check out here: left/right arrow problem position.

the code one:

#prev {     background: url(img/set-esq.png);     width: 62px;     height: 117px;     position: absolute;     bottom: 50px;     left: 150px;     z-index: 2; } #next {     background: url(img/set-dir.png);     width: 62px;     height: 117px;     position: absolute;     bottom: 50px;     z-index: 2;     right: 150px; } 

works fine browsers, except ie8. arrow "glues" slide margin. don't know how can solve problem anymore.

can guys give me hint or solution?

yeah, it's working in browsers except in ie8. note .slide selector give position: relative; , position arrow absolute position, time need change top, right, bottom or left value of absolutely positioned elements.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -