外部文件字体
推荐用的,也是我自己用的样式,不引用外部字体,太慢了
html{
font-family:system-ui,-apple-system,"Microsoft YaHei",Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif
}
部分wordpress主题内置字体设置,还无法取消,这时候就需要更细致的设置字体,和添加important才能覆盖
body, h1,h2,h3,h4,h5,h6,a,p,span,input,div,button,label,pre,select{
font-family:system-ui,-apple-system,"Microsoft YaHei",Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif !important
}
评论区