需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<style>标签中,输入css代码:span {font-size: 0.8em}。
3、浏览器运行index.html页面,此时span的字体大小被设置h1字体大小的80%。
function fullScreen(){$("#container").css({"width":window.screen.width,"height":window.screen.height})
}
$(window).resize(function(){
fullwww.hbbz08.comScreen()
})
fullScreen()