gpt4 book ai didi

css - 带有 Bootstrap 的响应式字体

转载 作者:行者123 更新时间:2023-11-28 11:10:25 28 4
gpt4 key购买 nike

我有以下响应式字体代码:

@media all and (max-width: 1200px) { /* screen size until 1200px */
body {
font-size: 1.5em; /* 1.5x default size */
}
}
@media all and (max-width: 1000px) { /* screen size until 1000px */
body {
font-size: 1.2em; /* 1.2x default size */
}
}
@media all and (max-width: 500px) { /* screen size until 500px */
body {
font-size: 0.8em; /* 0.8x default size */
}
}

我不知道如何设置“默认大​​小”。例如 1.5em font-size 是多少 px? 14 像素? 12px?

问候。

最佳答案

因为这是正文字体大小,1.5em 应该等于 24px。em 总是使用他的父元素作为它的基元素,但是,相对的 em 或 rem 不使用他的直接父元素;它使用 html 或正文字体大小。例如

body{
font-size:1em = 16px
}
.container{
font-size:1em = 16px
font-size:0.75em = 12px
}

关于css - 带有 Bootstrap 的响应式字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21703537/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com