vuejs-challenges icon indicating copy to clipboard operation
vuejs-challenges copied to clipboard

27 - 全局CSS

Open kalu5 opened this issue 2 years ago • 0 comments

// 你的答案
<template>
  <p>Hello Vue.js</p>
</template>

<style scoped>

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

/* Make it work */

:global(body) {
   width: 100vw;
  height: 100vh;
  background-color: burlywood;
}
</style>

kalu5 avatar Sep 19 '22 01:09 kalu5