Heim > Fragen und Antworten > Hauptteil
我的设计稿是640px的,所以设置font-size:62.5%比较写值,
但是屏幕缩小后的font-size比例我不知如何把控,不知这样写对不对?
min-width: 580px和max-width:580px会不会冲突呢?
@media only screen and (min-width: 640px){
html{
font-size: 62.5%;
}
}
@media only screen and (max-width: 640px) and (min-width: 580px){
html{
font-size: 62.5%;
}
}
@media only screen and (max-width:580px) and (min-width: 440px){
html{
font-size: 54%;
}
}
@media only screen and (max-width:440px) and (min-width: 400px){
html{
font-size: 46%;
}
}
@media only screen and (max-width:440px) and (min-width: 400px){
html{
font-size: 42%;
}
}
@media only screen and (max-width:400px) and (min-width: 360px){
html{
font-size: 40%;
}
}
@media only screen and (max-width:400px) and (min-width: 360px){
html{
font-size: 32%;
}
}
巴扎黑2017-04-17 11:29:26
会的,所以bootstrap 里都是差一个pixel. 产生冲突会怎样呢?根据css的原理会选择后定义的效果(选择器权重相同的情况下)。那么这个冲突会发生在屏幕宽度580px的时候。在用户使用的时候这种情况会很少见。但是并不是最佳实践,因为多进行了一次额外渲染。