css - full background image dosnt show full height? -
okay developing app facebook, , using textarea can adjusted in size. when start app whole of background image cannot seen unless pull down text area.
is there way make full image can seen @ times?
i include css background.
i have been looking on google background images scrollbars.
.fbbody { fb.canvas.setsize({ width: 2400, height: 1200}); font-family: "lucida grande" ,tahoma,verdana,arial,sans-serif; font-size: 11px; color: #333333; background: url(images/background.png) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; }
if can help, appreciated
you need ensure body
, html
100%
eg
html, body { height:100%; }
Comments
Post a Comment