Home > Web Front-end > HTML Tutorial > 通过$(window).resize改变rem,IE系列兼容的问题_html/css_WEB-ITnose

通过$(window).resize改变rem,IE系列兼容的问题_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 08:46:23
Original
1704 people have browsed it

我是想通过不同的浏览器窗口宽度改rem字体的大小,从而使用页面上字体也跟着改变的问题

$(window).resize通过计算屏幕宽度,给出不同的rem值,IE在页面刚载入的时候字体显示正常,$(window).resize之后改变了rem的大小,但是页面上子元素设置字体大小为:font-size:1rem的,字体大小不会随着rem的变化而变化,还是页面刚载入时的大小。但在chrome浏览器下就正常,会随着浏览器窗口大小的变化,字体大小也随着变化。

另外字体大小试着用vw为单位,IE也不会随着窗口变化跟着变化,IE9-IE11都是一样的情况

请问这种情况下如何做到让IE兼容呢,当然了,最笨的办法就是让IE在窗口大小改变的时候刷新一下,不知道有没有什么好的IE兼容性的解决办法,让浏览器窗口变化,字体大小也可以跟着变化

	$(window).resize(function(){		$(":root").css({'font-size':parseInt(document.body.clientWidth/19)+'px'});	});
Copy after login


div{font-size:.5rem;}
Copy after login


回复讨论(解决方案)

怎么木有人遇到同样的问题吗?

难道没有人遇到过?

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template