在css中引用图片的方法:1.使用background-image属性引用本地图片;2.使用background-image属性引用网络图片;
在css中引用图片的方法
使用background-image属性引用本地图片
body{ background-image:url('../images/bg.png');
}
使用background属性引用网络图片
body{ background:url('https://www.html.cn/static/images/logo.png');
}