Vue 设置背景图片样式

Vue 设置背景图片样式

CSS

<style>
body{
  background-image: url('./bg.jpg');
  background-size: cover;
  background-position: center;
  font: 14px/1.5 tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',sans-serif;
  color: #4d4d4d;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}
</style>

效果图

在这里插入图片描述

发布了114 篇原创文章 · 获赞 441 · 访问量 14万+

猜你喜欢

转载自blog.csdn.net/qq_37143673/article/details/105367511