我想缩小整个Bootstrap项目的大小,并且无法更改字体大小。我正在使用StarAdmin模板。
我试图在我的 style.css 中更改字体大小,但是当我更新“ font-size”时,网站仍会应用旧值。
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 0.8rem; // <===== changed value but nothing happend
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
我只想更改“基本”字体大小即可调整整个网页的大小。
答案 0 :(得分:0)
为要覆盖的所有css属性添加重要信息
查看演示代码
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 0.8rem !important; // <===== Add Important
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff; }