Live data from Hacker News

CSS Full Width Background Image

snippetrepo.com

1–5 of 5 posts

Re: CSS Full Width Background Image

#3

How is this better than "background-size: cover;"? Example: http://css-tricks.com/perfect-full-page-background-image/

Because 'background-size: cover; only works with IE9+'. This example is not supposed to be best practice or most preferred practice, it is meant to educate people and give an alternative to the one everybody already knows :)

Re: CSS Full Width Background Image

#4
post #3

How is this better than "background-size: cover;"? Example: http://css-tricks.com/perfect-full-page-background-image/

Because 'background-size: cover; only works with IE9+'. This example is not supposed to be best practice or most preferred practice, it is meant to educate people and give an alternative to the one everybody already knows :)

That's not true; you use:

-webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;

Re: CSS Full Width Background Image

#5
post #3

Earlier quoted context omitted.

Because 'background-size: cover; only works with IE9+'. This example is not supposed to be best practice or most preferred practice, it is meant to educate people and give an alternative to the one everybody already knows :)

That's not true; you use: -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;

Still only works in IE9+...