HTML如何添加背景图片
写在HTML <title>标题下
<style type="text/css"> body{ background-image:url(img/timg.jpg); //添加图片路径 background-repeat:no-repeat; //图片去重只显示一张 background-size:100% auto; //铺满整个背景 } </style>
写在HTML <title>标题下
<style type="text/css"> body{ background-image:url(img/timg.jpg); //添加图片路径 background-repeat:no-repeat; //图片去重只显示一张 background-size:100% auto; //铺满整个背景 } </style>