对具有两个不同字体尺寸的移动和桌面视图进行单个标题
在我的应用程序中,我希望标题以两种不同的字体尺寸用于移动视图和桌面视图,
这是我实现的目标,它可以使用!
<h2 class="mb-0 d-none d-lg-block" >My APP Name Desktop</h2>
<h2 class="mb-0 d-block d-lg-none" style="font-size: medium;">My APP Name Mobile</h2>
但是,除了使用两个h2的媒体查询以外,没有使用两个H2在单个标题中将两者组合在一起。
In my application i want the heading to be in two different fonts-sizes for mobile view and desktop view
Here is what i achieved to do so and it works!
<h2 class="mb-0 d-none d-lg-block" >My APP Name Desktop</h2>
<h2 class="mb-0 d-block d-lg-none" style="font-size: medium;">My APP Name Mobile</h2>
But instead of using two h2 is there any way to combine both in a single heading other than media queries in css file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用一种完全响应的方式来声明字体大小。一种方法是使用
font-size:clamp(value1,value2,value3)
。第一个值是最小值值 - 字体大小永远不会比您在此处设置的尺寸低。
第二个值是首选值。该元素将尝试将字体大小设置为此值。
最后一个值是最大值值。该元素的字体大小将永远不会超过此。
至于设置值,我建议使用
em
,rem
或vw
-units以产生完全响应的效果。在em
-unit上使用font-size
属性上的属性允许设置元素的字体大小相对于其父的字体大小。当父元素的大小变化时,孩子的大小会自动变化。阅读有关
EM
&amp; amp;的更多信息。rem
on thefont-size
-property:与价值观!尝试在带有示例代码段的新选项卡中调整浏览器的大小,并查看功能
clamp()
的功能。You could use a fully responsive way of declaring your font-size. One way to do this is using
font-size: clamp(value1, value2, value3)
.The first value is the minimum value - the font-size will never be lower than what you set here.
The second value is the preferred value. The element will try to set the font-size to this value.
The last value is the maximum value. The element's font size will never exceed this.
As for setting the values, I suggest using either
em
,rem
orvw
-units for a fully responsive effect. Using theem
-unit on thefont-size
property allows setting the font size of an element relative to the font size of its parent. When the size of the parent element changes, the size of the child changes automatically.Read more about
em
&rem
on thefont-size
-property: https://www.geeksforgeeks.org/difference-between-em-and-rem-units-in-css/Play a bit around with the values! Try resizing the browser in a new tab with the example snippet and see the effect of how powerful
clamp()
is.使用以下方式:
JS代码
HTML代码
或使用CSS
Use this:
JS Code
HTML Code
Or using CSS