nikodemus
nikodemus

Reputation: 81

chrome strikes again, not loading background-image

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

Answers (2)

Mahfuzul Hasan
Mahfuzul Hasan

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

FK-
FK-

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

Related Questions