亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

?? ???? ???? ??

?? ?:

background-position ??? ?? ???? ?? ??? ?????.

?? ??: background-position:x y;

x: ?? ??? ????, y: ?? ??? ?????. x, y? ?? ???(??, ???, ??, ???, ???), % ?(x% y%), ?? ?(?: xpos ypos)? ? ????.

??: background-position ??? ??? ?? ???? ?? ?? ?? "center" ?? "50%"? ???.

???? ??
||
<!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>背景圖片只顯示一次,并與文本分開(kāi)。</p> <p>實(shí)例中還添加了 margin-right 屬性用于讓文本與圖片間隔開(kāi)。</p> </body> </html>