Reputation: 81
Okay, this is really annoying.
Why this simple code does not work in chrome? http://jsfiddle.net/5d105ebx/
#poster {
width: 758px;
height: 140px;
background-image:url("http://test.fastsubtitles.ro/posters/banners/36.jpg");
}
It works in IE. I do not understand.
LE: ADblock was the problem. Folder where my images are is named banners so i guess that's the reason.
Upvotes: 0
Views: 62
Reputation: 172
First Try Hard Reload, ( Ctrl+Shift+R )
Or Use just Like this.
background:url("http://test.fastsubtitles.ro/posters/banners/36.jpg");
Upvotes: 1
Reputation: 1572
Clear cache and reload.
If you have Chrome dev tools open, long press on the reload button for quick access to hard reload with cache clearing.
Upvotes: 0