I must be missing something simple... I am trying to create an html page that has an image set as the background. Now I'd like the image to take up 70% of the page, aligned to the top right.
I was able to get the image to align to the top right of the page, and it looks pretty good in chrome, but terrible in IE. In IE, the image takes up the entire page - which affectively ruins the look and feel of the page...
Is there something I'm missing? How can I limit the size of the background image in IE? Any thoughts? code below:
<html>
<head>
<style type="text/css">
body {
margin: 0;
background: transparent url(Background2.png) no-repeat fixed right;
background-position: right top;
font-size:12px;
}
</style>
</head>
<body>
Hello!
</body>