Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 2.24 KB

README.zh-CN.md

File metadata and controls

28 lines (22 loc) · 2.24 KB

全局CSS 中等 #CSS Features

By webfansplz @webfansplz

接受挑战    English

有些时候,我们想在具有CSS作用域的Vue单文件组件设置全局CSS样式, 该怎么设置呢 ? 让我们开始吧 👇:

<template>
  <p>Hello Vue.js</p>
</template>

<style scoped>

p {
  font-size:20px;
  color:red;
  text-align: center;
  line-height: 50px;
}

/* 使其工作 */
body {
  width: 100vw;
  height: 100vh;
  background-color: burlywood;
}
</style>

返回首页 分享你的解答 查看解答