为什么我的元素使用两种不同的字体大小?

Why my element uses 2 different font-sizes?

我将字体大小设置为全局。当浏览器的宽度发生变化(一种流畅的排版)时,情况就会发生变化。我将其设置为 body 元素。

但是当浏览器的大小改变时,它也会改变(字体大小)。为什么?以及我该如何阻止它?

*,
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: calc(16px + .75vw);
}

.container {
  background-color: #d1c6c6;
  padding: 10px;
  min-height: 100vh;
}

.container__box {
  font-weight: bold;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding: 15px 10px;
  background-color: #8b2be4;
  width: 90vw;
  font-size: 30px;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<div class="container">
  <div class="container__box">Gridfan Jessica</div>
</div>

But when size of browser changes, then it changes(font-size). Why?

因为您使用了 vw 字体大小随浏览器大小变化而变化。

How can I stop this?

改用px。如果这让眼睛不舒服,请为不同的屏幕宽度使用不同字体大小的媒体查询。