国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

如何定位背景圖像

實(shí)例解析:

background-position屬性設(shè)置背景圖像的起始位置。

基本語法:background-position:x y;

x:表示水平位置,y:表示垂直位置。x,y可以分別是:關(guān)鍵字(left、right、top、bottom、center)、%值(x% y%)、坐標(biāo)值(例:xpos ypos,)。

注:如果background-position屬性只指定了一個(gè)值,則其他值將會(huì)為“center”或者“50%”。

繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> body { background-image:url('https://img.php.cn/upload/article/000/000/015/5c6ba8b3a7ee3101.png'); background-repeat:no-repeat; background-position:right top; margin-right:200px; } </style> </head> <body> <h1>Hello World!</h1> <p>背景圖片不重復(fù),設(shè)置 position 實(shí)例。</p> <p>背景圖片只顯示一次,并與文本分開。</p> <p>實(shí)例中還添加了 margin-right 屬性用于讓文本與圖片間隔開。</p> </body> </html>
提交重置代碼