css 背景图片设置
<html> <head> <title>css学习</title> <style> </style> </head> <body> <div style="background-image:url('https://w3knows.oss-cn-beijing.aliyuncs.com/1372356458158624768/1372361822660857856.png');height:200px;background-repeat:no-repeat;"> 背景图片水平方向不平铺 </div> <div style="background-image:url('https://w3knows.oss-cn-beijing.aliyuncs.com/1372356458158624768/1372361822660857856.png');background-repeat:repeat-x;height:200px;"> 背景图片水平方向平铺 </div> <div style="background-image:url('https://w3knows.oss-cn-beijing.aliyuncs.com/1372356458158624768/1372361822660857856.png');height:200px;background-repeat:no-repeat;background-position:right top;"> 背景图片位置设置 </div> </body> </html>
鲸之声为您拼命加载中...