我必須缺少一些簡單的東西......我試圖創建一個圖像設置爲背景的html頁面。現在,我希望圖片佔據頁面的70%,並與右上角對齊。CSS問題:如何設置背景圖像的寬度?
我能夠將圖像對齊到頁面的右上角,它在Chrome中看起來很不錯,但在IE中很糟糕。在IE中,圖像佔據了整個頁面 - 這種情感上會破壞頁面的外觀和感覺...
有什麼我失蹤了嗎?如何限制IE中背景圖片的大小?有什麼想法嗎?下面的代碼:
<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>