如何将背景图像放在右下angular? (CSS)
我有一个500×500像素的图像被设置为我的网站上的背景图像(作为<body>
背景图像)但我需要这个图像位于网页的右下angular。 我怎样才能做到这一点? (更好的与CSS方法)
谢谢。
Voilla:
body { background-color: #000; /*Default bg, similar to the background's base color*/ background-image: url("bg.png"); background-position: right bottom; /*Positioning*/ background-repeat: no-repeat; /*Prevent showing multiple background images*/ }
背景属性可以组合在一起,在一个背景属性中。 另见: https : //developer.mozilla.org/en/CSS/background-position
这应该做到这一点:
<style> body { background:url(bg.jpg) fixed no-repeat bottom right; } </style>
更准确地定位:
background-position: bottom 5px right 7px;
你有没有尝试类似的东西:
body {background: url('[url to your image]') no-repeat right bottom;}