如何確保某些內容始終適合網頁的特定區域?如何適應背景圖像內的內容
作爲一個例子,我希望句子「Fit this inside」出現在背景圖片的內部。這裏是我的test.html
文件:
<!DOCTYPE html>
<html lang="en">
<link href="test.css" rel="stylesheet" type="text/css">
<body>Fit this inside</body>
</html>
這裏是我的test.css
文件:
body
{
background-image: url('bg_img.png');
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size:100% 68%;
overflow: scroll;
}
這將導致文本「適合這裏面的」顯示在頁面的最頂端,而不是背景中圖像區域。
這樣做的正確方法是什麼?
的jsfiddle:http://jsfiddle.net/u3TAF/
請提供http://jsfiddle.net/ – enyce12
看起來像你的背景大小(高度)爲68% - 因此它在高度的16%開始。您可以在任何塊(div/p)中找到您的文本,並將其設置爲最高16%。 *編輯 - 這是16%(32/2) –