调整大小(CSS)后如何保持相对于容器宽度的字体大小?

时间:2017-07-31 11:28:09

标签: html css3

我使用“vw”单位来定义与其容器宽度相关的字体大小。这项工作相当不错,但我对结果并不完全满意。让我解释一下......

下面的代码将在容器周围生成一个框。在框中我有一个灰色背景的文本。

当我在计算机上的全屏浏览器中显示此内容时,文本会填充容器的宽度。它看起来像这样:enter image description here

然而......当我将浏览器的大小调整到大约屏幕宽度的一半时,它看起来很像:enter image description here

文本大小比容器和灰色相对文本容器减少得多。我可能误解了“大众”单位是如何运作的。任何人都可以解释我应该如何更好地保持相对字体大小?我的目标是在桌面和移动环境中看起来应该类似。

<!DOCTYPE html>
<html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1">

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

     <!-- Custom styles -->
    <style>
        .container {
            border-style: solid;
        }
        .relative-text {
            font-family: helvetica, arial, sans-serif;
            font-size: 2.5vmax;
            background-color: #DDD;
        }
    </style>
</head>

<body>
    <div class="container">
       <div class="relative-text text-center">&lt;== This text is resized when window is resized ==&gt;</div>
    </div>
</body>
</html>

2 个答案:

答案 0 :(得分:1)

我已根据您的需要更改了您的代码

.relative-text {
  font-family: helvetica, arial, sans-serif;
  font-size: 3vw;
  background-color: #DDD;
  border-style: solid;
  text-align:center;
}
<div class="relative-text text-center">&lt;== This text is resized when window is resized ==&gt;</div>

答案 1 :(得分:0)

你的问题来自bootstrap 容器类的媒体查询,删除了容器类的div。