導航:首頁 > 萬維百科 > 網頁設計中的背景圖片怎麼平鋪

網頁設計中的背景圖片怎麼平鋪

發布時間:2021-03-10 07:24:51

1、網頁怎麼讓背景圖片平鋪?

<style type="text/css">
body
{
background: url('smiley.gif') no-repeat fixed center;
}
</style>
把url裡面的東西設置成你自己的圖片就可以了
你說的平鋪是由歧義的,如果按照Windows顯示內屬性的定西,其實HTML背景默認就是平容鋪,我想你的意思大概是拉伸或者居中。。。

2、網頁設計背景圖片時怎麼使圖片不重復平鋪

.tabbg {
background-attachment: scroll;
background-image: url(images/tabbg.gif);
background-repeat: no-repeat;
background-position: left bottom;
}

調用:class="tabbg"

注意:CSS代碼中的background-position: left bottom;就是定義背景圖片的位置為左下,可根據具體需要做調整,如右上right top;左上left top;右下right bottom;等等。

如果想不重復,背景圖要大點哦

3、html 怎麼讓背景圖鋪滿整個頁面

我自己試出來的,希望有用
例子,用css
<body background="images\002.png"
style=" background-repeat:no-repeat ;
background-size:100% 100%;
background-attachment: fixed;"
>

4、html網頁設計裡面怎麼平鋪背景圖片?

html網頁設計裡面平鋪背景圖片的代碼如下:
<html>
<body>
<div id="Layer1" style="position:absolute; left:0px; top:0px; width:100%; height:100%">
<img src="pictures/background.jpg" width="100%" height="100%"/>
</div>
</body>
</html>
網頁背景默認是平鋪整個屏幕的,可能有以下原因導致不能平鋪:

1、圖片不夠大,又background屬性不能拉伸圖片;
2、只能用個div,把其z-index值設為負,並使這個div大小為整個body大小,在div里用<img> ;
3、body的background屬性去掉,要不然會被遮住。

5、HTML 中用background添加的圖片怎麼才能平鋪在網頁上

我想你的意思是把背景圖
拉伸鋪滿整個網頁吧?我只能說
background(背景圖)是不能拉伸的,你可以找幾張合適的圖
拼在一起(效果好得多),也可以選著純色的圖片
縱、橫平鋪
也就是重復(橫向平鋪:background-repeat:
repeat-x;
縱向平鋪:background-repeat:
repeat-y;

6、網頁中插入的圖片怎麼平鋪?

如果你的圖片是作為背景,在圖片的寬度或者長度不夠的時候,它會自動重復圖片,平鋪開,填滿整個空間。另外:「background-repeat:no-repeat;」不要背景平鋪,background-repeat:repeat-x;這是水平平鋪,background-repeat:repeat-y;這是垂直平鋪。
<!--默認的水平和垂直都平鋪-->
<table align="center" width="100%" height="100px">
<tr>
<td width="100%" style=" background:url(3.gif)">
你的內容
</td>
</tr>
</table>
<br />
<!--只有水平平鋪-->
<table align="center" width="100%" height="100px">
<tr>
<td width="100%" style=" background:url(3.gif) repeat-x" valign="top" >
你的內容
</td>
</tr>
</table>
<br />
<!--只有垂直平鋪-->
<table align="center" width="100%" height="100px">
<tr>
<td width="100%" style=" background:url(3.gif) repeat-y" valign="top" >
你的內容
</td>
</tr>
</table>
<br />
<!--無平鋪,可以調節背景圖片的大小來使它正好填充背景-->
<table align="center" width="100%" height="100px">
<tr>
<td width="100%" style=" background:url(3.gif) no-repeat" valign="top" >
你的內容
</td>
</tr>
</table>

要是你不做背景,要的是整張圖片鋪開,不要重復,那麼就設圖片的長寬比例都為100%,如:
<table align="center">
<tr>
<td width="200px" height="20px">
<img src="1.bmp" width="100%" height="100%"/>
</td>
</tr>
</table>
但是這樣可能會使圖片變形,建議用PS將圖片改成自己想要的大小再使用

7、網頁製作里背景怎麼平鋪填滿啊 還有沒有其他方法

是用一張圖片將整個屏幕鋪滿嗎?如果是的話:

1:用CSS3(對瀏覽器有要求)。
2:將背景圖片做的比瀏覽器窗口寬高大。
3:用fixed固定圖片,而不採用背景的方法(百度首頁背景圖片就是採用這種方法)。

8、怎麼使網頁中的背景圖片平鋪~!急

CSS設置背景圖片平鋪:
<style type="text/css">
<!--
body {
background-image: url(img/top04.jpg);
background-repeat:no-repeat;:repeat;repeat-x;repeat-y;
【在此設置,分別顯示背景為,不平鋪,平鋪,沿X軸平鋪,沿Y軸平鋪】
}
-->
</style>
解決辦法,圖片高寬設置合適後,使用background-repeat:no-repeat;

9、html網頁設計裡面怎麼平鋪背景圖片

html網頁設計裡面平鋪背景圖片的代碼如下:
<html>
<body>
<div id="Layer1" style="position:absolute; left:0px; top:0px; width:100%; height:100%">
<img src="pictures/background.jpg" width="100%" height="100%"/>
</div>
</body>
</html>
網頁背景默認是平鋪整個屏幕的,可能有以下原因導致不能平鋪:

1、圖片不夠大,又background屬性不能拉伸圖片;
2、只能用個div,把其z-index值設為負,並使這個div大小為整個body大小,在div里用<img> ;
3、body的background屬性去掉,要不然會被遮住。

10、CSS中如何設拉伸背景圖片鋪滿屏幕

#bg{
margin:0px;
background: url(images/beijing.png) no-repeat;
background-size:100% 100%;
background-attachment:fixed;
}

擴展資料:

url(images/beijing.png)——圖片路徑的位置;

no-repeat—— 圖片不重復;

center 0px——center是距離頁版面左邊權的定位,0px是距離頁面上面的定位;

background-position: center 0——就是圖片的定位,同上;

background-size: cover;——把背景圖像擴展至足夠大,以使背景圖像完全覆蓋背景區域。背景圖像的某些部分也許無法顯示在背景定位區域中;

min-height: 100vh;——視窗的高度,「視區」所指為瀏覽器內部的可視區域大小,即window.innerWidth/ window.innerHeight大小。

與網頁設計中的背景圖片怎麼平鋪相關的知識