当前位置: 首页 > 面试题库 >

带有百分比值(%)的字体大小不随屏幕大小缩放

融宏伟
2023-03-14
问题内容

我不明白为什么我缩小屏幕时字体没有减小。

我将所有CSS都设置为百分比,以便所有内容都能响应。

相反,当我缩小屏幕时,字体不会改变大小,从而弄乱了设计。

我正在24英寸显示器上构建我的投资组合站点,然后在13英寸屏幕上对其进行检查以确保它可以缩放。

#about {

  height: 100%;

  width: 100%;

  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.12, #061419), color-stop(0.61, #36875F));

  background-repeat: no-repeat;

}

#about .container-fluid,

#about .container-fluid .row {

  height: 100%;

  width: 100%;

}

.about-left {

  height: 100%;

  background-image: url('../../images/jay-ocean.jpg');

  background-repeat: no-repeat;

  background-position: 0 100%;

}

.about-right {

  width: 50%;

}

.about-content {

  width: 50%;

  margin: 0 auto;

  padding-top: 23%;

  text-align: center;

}

.about-content-title h1 {

  text-align: center;

  font-size: 320%;

}

.about-content-info p {

  font-size: 110%;

  word-spacing: 0.8em;

}

.about-personal-info h4 {

  font-size: 110%;

  word-spacing: 0.8em;

}


<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />

<section id="about">



  <div class="container-fluid">



    <div class="row">



      <div class="about-left col-lg-6 col-md-6 col-sm-12 col-xs-12">

      </div>



      <div class="about-right col-lg-6 col-md-6 col-sm-12 col-xs-12">



        <div class="about-content">



          <div class="about-content-title">

            <h1>I'M JAY.</h1>

          </div>



          <br />



          <div class="about-content-info">

            <p>An entrepenurial minded, Full Stack Developer. Whenever I'm up against a challenge that I care about, it gives me a rush. Focusing on the big picture is important to me, but I never forget the smaller details. Anything that is not challenging

              is boring, and makes me yawn.

              <br />

              <br />Currently seeking a Javascript position, using the MEAN stack, in New York City. Being rebellious, ambitious, and hard working are values that are very important to me. I want to join a company that has similar values and has goals of reaching

              ridiculous levels of success, not just modest realistic ones. I love working with a solid team.

            </p>

          </div>



          <br />



          <div class="about-personal-info">

            <h4>Email:</h4>

            <h4>ICON ICON ICON ICON</h4>

          </div>



        </div>



      </div>



    </div>



  </div>



</section>

问题答案:

我认为您要寻找的是 视口百分比单位

尝试这个:

.about-content-title h1 { font-size: 5vw; }

通过此调整,当您调整浏览器窗口的大小时,字体将按比例缩放。

从规格:

5.1.2。视口百分比长度:对vwvhvminvmax单位

视口百分比长度相对于初始包含块的大小。更改初始包含块的高度或宽度时,将对其进行相应缩放。

  • vw单位 -等于初始包含块的宽度的1%。
  • vh单位 -等于初始包含块的高度的1%。
  • vmin unit- 等于vw或的较小者vh
  • vmax unit- 等于vw或的较大者vh

使用百分比值(%)不会相对于视口缩放字体,因为这些值是相对于父项或祖先的。参见规格: 4.3。
百分比:<percentage>类型



 类似资料:
  • 问题内容: 我的网站比较流畅,菜单是其宽度的20%。我希望菜单的字体大小能够正确测量,因此它始终适合方框的宽度,并且永远不要换行。我曾考虑使用“ em”作为单位,但它与浏览器的字体大小有关,因此当我更改分辨率时,字体大小保持不变。 也尝试了分数和百分比。什么都没有,因为我需要… 请给我提示如何进行。 问题答案: 您可以根据屏幕的屏幕大小手动给它。只需看看不同的屏幕大小并手动添加字体大小即可。

  • 就像上面提到的图像一样。但我将背景色黑色添加到默认,红色添加到19201080。对于19201080个像素分辨率不带红色的模拟器,我这样做是为了在Android中为不同的屏幕尺寸创建不同的UI

  • 嘿,伙计们,我只是想问一下,当我们显示一个背景图片在我们的活动,我们把图片放在可绘制的文件夹与子不同的文件夹,像 并且每个文件夹都有一个特定的密度和尺寸,这样它就可以支持多个设备等。 我想问一下,如果我的图片尺寸是3000*3000,我是否需要为每个文件夹修改我的图片 首先,我必须修改它为720*1280的xhdpi,然后把它放在layout_xhdpi文件夹,然后我修改它为hdpi,即400*8

  • 嘿,伙计们,我使用 根据屏幕宽度大小调整我的字体。像这样使用.... 它在iPhone和android设备上看起来不错,比如5.5英寸的设备,但在我的Galaxy s9上看起来很糟糕。我想根据屏幕设置我的字体,它可以自行调整..我该怎么做

  • 我正在尝试以编程方式添加ImageView,但不要在不同的屏幕上制作相同的大小。我尝试了许多比例代码,但没有任何好的结果。 屏幕:屏幕图像 这是我的代码:

  • 我是一个新的android开发和我正在尝试创建和应用程序与网格菜单,菜单。 当前依赖项:compile fileTree(目录:“libs”,include:['*.jar'])testCompile“junit:junit:4.12”编译组:“org.apache.httpcomponents”,名称:“httpclient-android”,版本:“4.3.5.1”编译组:“cz.mseber