(1)    移动端页面布局局使用DIV+CSS,我想问下各位大神哪些代码需要手打,哪些可以不用打

这几天都在修改博客上面的样式。本来用的是d83.0的模板。自己又修改了许多地方,其中自己修改的一些地方在手机里面显示的效果不是很理想,于是想改成自适应的效果。对不是特别的熟练,只能去网上找找案例看了。发现一个不错的文章。写的比较入门,也很仔细。所以拿过来分享给大家。如果还想看图片的案例可以看我找的另外的一篇《》。移动设备正超过桌面设备,成为访问互联网的最常见终端。于是,网页设计师不得不面对一个难题:如何才能在不同大小的设备上呈现同样的网页?手机的屏幕比较小,宽度通常在600像素以下;PC的屏幕宽度,一般都在1000像素以上(目前主流宽度是),有的还达到了2000像素。同样的内容,要在大小迥异的屏幕上,都呈现出满意的效果,并不是一件容易的事。很多网站的解决方法,是为不同的设备提供不同的网页,比如专门提供一个mobile版本,或者iPhone / iPad版本。这样做固然保证了效果,但是比较麻烦,同时要维护好几个版本,而且如果一个网站有多个portal(入口),会大大增加架构设计的复杂度。于是,很早就有人设想,能不能”一次设计,普遍适用”,让同一张网页自动适应不同大小的屏幕,根据屏幕宽度,自动调整布局(layout)?一、”自适应网页设计”的概念2010年,Ethan Marcotte提出了(Responsive Web Design)这个名词,指可以自动识别屏幕宽度、并做出相应调整的网页设计。他制作了一个,里面是《福尔摩斯历险记》六个主人公的头像。如果屏幕宽度大于1300像素,则6张图片并排在一行。如果屏幕宽度在600像素到1300像素之间,则6张图片分成两行。如果屏幕宽度在400像素到600像素之间,则导航栏移到网页头部。如果屏幕宽度在400像素以下,则6张图片分成三行。上面有更多这样的例子。这里还有一个,可以在一张网页上,同时显示不同分辨率屏幕的测试效果,我推荐安装。二、允许网页宽度自动调整“自适应网页设计”到底是怎么做到的?其实并不难。首先,在网页代码的头部,加入一行。&meta name=”viewport” content=”width=device-width, initial-scale=1″ /&是网页默认的宽度和高度,上面这行代码的意思是,网页宽度默认等于屏幕宽度(width=device-width),原始缩放比例(initial-scale=1)为1.0,即网页初始大小占屏幕面积的100%。所有主流浏览器都支持这个设置,包括IE9。对于那些老式浏览器(主要是IE6、7、8),需要使用。&!–[if lt IE 9]&&script src=”http://css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js”&&/script&&![endif]–&三、不使用绝对宽度由于网页会根据屏幕宽度调整布局,所以不能使用绝对宽度的布局,也不能使用具有绝对宽度的元素。这一条非常重要。具体说,CSS代码不能指定像素宽度:width:只能指定百分比宽度:width: xx%;或者width:四、相对大小的字体字体也不能使用绝对大小(px),而只能使用相对大小(em)。body {font: normal 100% Helvetica, Arial, sans-}上面的代码指定,字体大小是页面默认大小的100%,即16像素。h1 {font-size: 1.5}然后,h1的大小是默认大小的1.5倍,即24像素(24/16=1.5)。small {font-size: 0.875}small元素的大小是默认大小的0.875倍,即14像素(14/16=0.875)。五、流动布局(fluid grid)的含义是,各个区块的位置都是浮动的,不是固定不变的。.main {float:width: 70%;}
.leftBar {float:width: 25%;}的好处是,如果宽度太小,放不下两个元素,后面的元素会自动滚动到前面元素的下方,不会在水平方向overflow(溢出),避免了水平滚动条的出现。另外,绝对定位(position: absolute)的使用,也要非常小心。六、选择加载CSS“自适应网页设计”的核心,就是引入的模块。它的意思就是,自动探测屏幕宽度,然后加载相应的CSS文件。&link rel="stylesheet" type="text/css"
media="screen and (max-device-width: 400px)"
href="tinyScreen.css" /&上面的代码意思是,如果屏幕宽度小于400像素(max-device-width: 400px),就加载tinyScreen.css文件。&link rel="stylesheet" type="text/css"
media="screen and (min-width: 400px) and (max-device-width: 600px)"
href="smallScreen.css" /&如果屏幕宽度在400像素到600像素之间,则加载smallScreen.css文件。除了用html标签加载CSS文件,还可以在现有CSS文件中加载。@import url("tinyScreen.css") screen and (max-device-width: 400px);七、CSS的@media规则同一个CSS文件中,也可以根据不同的屏幕分辨率,选择应用不同的CSS规则。@media screen and (max-device-width: 400px) {
#sidebar {
}上面的代码意思是,如果屏幕宽度小于400像素,则column块取消浮动(float:none)、宽度自动调节(width:auto),sidebar块不显示(display:none)。八、图片的自适应(fluid image)除了布局和文本,”自适应网页设计”还必须实现图片的。这只要一行CSS代码:img { max-width: 100%;}这行代码对于大多数嵌入网页的视频也有效,所以可以写成:img, object { max-width: 100%;}老版本的IE不支持max-width,所以只好写成:img { width: 100%; }此外,windows平台缩放图片时,可能出现图像失真现象。这时,可以尝试使用IE的:img { -ms-interpolation-mode: }或者,Ethan Marcotte的。addLoadEvent(function() {
var imgs = document.getElementById("content").getElementsByTagName("img");
imgSizer.collate(imgs);
});不过,有条件的话,最好还是根据不同大小的屏幕,加载不同分辨率的图片。有可以做到这一条,服务器端和客户端都可以实现。我觉得从上面的的一些分析可以学到很多东西,能解决一些CSS3网页设计基本的入门问题,希望也能帮到看到的朋友。转载请注明: &
如果你觉得这篇文章或者我分享的主题对你有帮助,请支持我继续更新网站和主题 ! or分享 (0)利用Div+CSS(嵌套+盒模型)格局页面完整实例流程 - HTML/CSS当前位置:& &&&利用Div+CSS(嵌套+盒模型)格局页面完整实例流程利用Div+CSS(嵌套+盒模型)格局页面完整实例流程www.MyException.Cn&&网友分享于:&&浏览:0次利用Div+CSS(嵌套+盒模型)布局页面完整实例流程Div+CSS(嵌套+盒模型)布局页面完整实例流程:
&!DOCTYPE html&&html&&&head&&&&meta charset="UTF-8"&&&&title&中国石油大学&/title&&&/head&&&style&&&*{&&&margin: 0&&&padding: 0&&}&&.top-head{&&&width: 100%;&&&height:&&&border: 1&&}&&.top{&&&width: 100%;&&&height: 200&&&/*border: 1*/&&&position:&&&background-image: url(./img/header_bg.png);&&}&&.logo{&&&width: 100%;&&&height: 200&&&/*border: 1*/&&}&&.head-right{&&&width: 400&&&height: 150&&&float:&&&/*border: 1*/&&}&&.nav{&&&width: 100%;&&&height: 50&&&/*border: 1*/&&&position:&&&margin-top: -5&&&background-color:&&}&&.nav-text{&&&width: 160&&&height: 40&&&float:&&&list-style:&&&margin: 15&&&text-align:&&&font-size: 17&&}&&.current:hover{&&&color: #ffff00;&&}&&.IOS{&&width: 80&&height: 80&&margin:50px 10&&float:&&background-color:#8A2BE2;&&position:&&&}&&.Android{&&width: 80&&height: 80&&margin:50px 10&&float:&&background-color:#A52A2A;&&position:&&}&&.QRC-1{&&&width: 80&&&height: 20&&&/*background-color: #00FFFF;*/&&&float:&&&margin:-10px -100&&&position:&&&text-align:&&}&&.QRC-2{&&&width: 80&&&height: 20&&&/*background-color:#006400;*/&&&float:&&&margin:-10px 0&&&position:&&&text-align:&&}&&.tel{&&width: 150&&height: 80&&margin:50px 10&&float:&&padding-right: 20&&font-size: 28&&/*border: 1*/&&}&&.container{&&&width: 90%;&&&height: 1800&&&/*border: 1*/&&&margin: 0&&}&&.content-left{&&&width: 20%;&&&height: 270&&&float:&&&margin: 20&&&&&&&& background-color:&&&&& }&&&&& .list-left ul li{&&&&& &&list-style:&&&&width: 210&&&&height: 50&&&&background-color: #CCCCCC;&&&&line-height: 50&&&&text-align:&&&&margin-top: 2&&&}&&&.list-left{&&&&padding-top: 5&&&}&&&.text-t:hover{&&&&color:&&&}&&&&& .divHead{&&&&& &padding: 10px 30&&&&& &border-bottom: 3&&&&& }&&&&& .sider-left{&&&&& &margin: 30&&&&& &text-align:&&&&& &color:&&&&& &border-bottom: 2&&&&& &&&&&& &vertical-align:&&&&& }&&&&& a{&&&&& &text-decoration:&&&&& &color:&&&&& }&&&&& a:visited{&&&&& &color:}&&&&&&& .content-middle{&&&width: 54%;&&&height: 270&&&margin: 20px 280&&&&&&&& position:&&&& }&&.content-right{&&&width: 20%;&&&height: 270&&&float:&&&margin: -290px 20&&&&&&&& background-color:&&&&&&& }&&&&&&& .username{&&&&&&& &text-align:&&&&&&& &width: 200&&&&&&& &height: 40&&&&&&& &line-height: 40&&&&&&& &vertical-align:&&&&&&& &margin: 40px 20&&&&&&& &margin-bottom: 10&&&&&&& &position:&&&&&&& &&&&&&& &}&&&&&&& &.password{&&&&&&& &text-align:&&&&&&& &width: 200&&&&&&& &height: 40&&&&&&& &line-height: 40&&&&&&& &vertical-align:&&&&&&& &margin: 10px 20px 0&&&&&&& &position:&&&&&&& &}&&&&&&& .content-1{&&&&&&& &&width: 20%;&&&&height: 340&&&&float:&&&&margin: 0px 0px 0px 20&&&&&&&&& background-color:&&&&&&& }&&&&&&& .content-2{&&&&&&& &&width: 54%;&&&&height: 340&&&&margin: 20px 280&&&&&&&&& background-color:&&&&&&& }&&&&&&& .content-3{&&&&&&& &&width: 20%;&&&&height: 340&&&&float:&&&&margin: -360px 20&&&&&&&&& background-color:&&&&&&& }&&&&&&& .content-4{&&&&&&& &&width: 31%;&&&&height: 300&&&&float:&&&&margin: 0px 0px 0px 20&&&&&&&&& background-color:&&&&&&& }&&&&&&& .content-5{&&&&&&& &&width: 31%;&&&&height: 300&&&&margin: 20px 420&&&&&&&&& background-color:&&&&&&& }&&&&&&& .content-6{&&&&&&& &&width: 31%;&&&&height: 300&&&&float:&&&&margin: -320px 20&&&&&&&&& background-color:&&&&&& }&&&&&&& .majorBox{&&&&&&&& &width: 87%;&&&&height: 200&&&&background-color:&&&&margin:0&&&&margin-top: 1200&&&&&&& }&&&&&&& .majorBox-link-box{&&&&&&& &&width: 87%;&&&&height: 100&&&&background-color:&&&&position:&&&}&&&.footer{&&&&width: 100%;&&&&height: 100&&&&background-color:&&&&position:&&&&margin-top:50&&&}&&&.button{&&&&width: 200&&&&height: 30&&&&margin: 10px 20px 5&&&&background-color:&&&&color:&&&}&&&.forget-password{&&&&float:&&&&margin: 1px 20px 0px 0&&&&font-size: 12&&&&color:&&&}&&&.conten-nav-top{&&&&padding: 10px 30&&&&& &&border-bottom: 3&&&}&&&.conten-nav-top-1{&&&&padding: 10px 30&&&&border-bottom: 3px solid #00FFFF;&&&}&&&.jszc,.tel-1,.ad{&&&&font-size: 14&&&&color:#DCDCDC;&&&&text-align:&&&}&&&.jszc{&&&&padding-top:10&&&&margin: 10&&&}&&&.ad{&&&&margin: 10&&&}&&&.phone{&&&&font-size: 14&&&&margin-left: 20&&&&margin-top: 20&&&}&&&.addr{&&&&font-size: 14&&&&margin-left: 20&&&&padding-top: 10&&&&line-height: 30&&&}&&&.text-contect{&&&&width: 440&&&&float:&&&}&&&.text-1{&&&&font-size: 16&&&&text-align:&&&&padding-top: 10&&&&line-height: 30&&&}&&&.text-2{&&&&font-size: 14&&&&text-align:&&&&line-height: 25&&&&&&&}&&&.box-text ul li{&&&&list-style:&&&&font-size: 14&&&&float:&&&&margin: 20&&&&color:&&&}&&&.majorcontect ul li {&&&&border:1&&&&float:&&&&font-size: 14&&&&margin: 30px 40&&&&list-style:&&&}&&&.informBox ul li{&&&&list-style:&&&&padding: 5px 30&&&&line-height: 30&&&&font-size: 14&&&}&&&.dynamicBox{&&&&padding-left: 20&&&}&&&.dynamicBox ul li{&&&&list-style:&&&&font-size: 12&&&&line-height: 25&&&&padding-left: 30&&&}&&&.dynamicBox ul li span{&&&&float:&&&&padding-right: 20&&&}&&&.teachBox ul li{&&&&list-style:&&&&font-size: 16&&&&background-color:#DCDCDC;&&&&height: 50&&&&width: 220&&&&text-align:&&&&line-height: 50&&&&margin-top: 2&&&}&&&.teachBox{&&&&padding-top: 15&&&}&&&.learn{&&&&line-height: 30&&&&color:&&&&border: 1px silver #DCDCDC;&&&&background-color: #DCDCDC;&&&}&&&.newsList ul li span{&&&&float:&&&&padding-right: 20&&&}&&&.newsList ul li{&&&&list-style:&&&&float:&&&&font-size: 14 &&&&height: 20&&&&width: 320&&&&line-height: 20&&&&padding-top: 10&&&&border-bottom: 1px dashed #DCDCDC;&&&}&&&.newsList{&&&&margin-left: 15&&&}&&&.text-s:hover{&&&&color:&&&}&&&.text-x:hover{&&&&color:&&&}&&&.text-p:hover{&&&&color:&&&&background-color:&&&}&&/style&&&body bgcolor="lavender"&&&&div class="top-head"&&&&div class="top"&&&&&div class="logo"&&&&&&img src="./img/logo石油大.png"& &&&&&width="380px" &&&&&height="150px" style="margin-left: 40" /&&&&&&div class="head-right"&&&&&&&&div class="IOS "&&&&&&&&&img src="./img/IOS.png" /&&&&&&&&&p&&/p&&&&&&&&/div&&&&&&&&div class="Android "&&&&&&&&&img src="./img/Android.png" /&&&&&&&&&p&&/p&&&&&&&&&div class="QRC-1"&IOS&/div&&&&&&&&&div class="QRC-2"&Android&/div&&&&&&&&/div&&&&&&&&div class="tel"&&&&&&&&&div class="tel-1" style="margin-top: 10 margin-left:10font-size: 16 color: #0065b3;"&学生服务热线:&&&&&&&&/div&&&&&&&&&div class="tel-2" style="margin-top: 8margin-left:10 font-size: 22 color: #0065b3;"&400-640-1953&&&&&&&&/div&&&&&&&&/div&&&&&&/div&&&&&&div class="nav"&&&&&&&ul class=" nav-content"&&&&&&&&&li class="nav-text"&&&&&&&&&&a class="current" href="/portal/home.aspx"&首页&/a&&&&&&&&&/li&&&&&&&&&li class="nav-text"&&&&&&&&&&a class="current" href="http://www.upol.cn/" class="nav_list_a"&学院概况&/a&&&&&&&&&/li&&&&&&&&&li class="nav-text"&&&&&&&&&a class="current" href="http://www.upol.cn/zhaosheng/" class="nav_list_a"&招生专区&/a&&&&&&&&&/li&&&&&&&&&li class="nav-text"&&&&&&&&&&a class="current" href="/portal/news.aspx?cateKey=jxdt" class="nav_list_a"&教学教务&/a&&&&&&&&&/li&&&&&&&&&li class="nav-text"&&&&&&&&&&a class="current" href="/portal/news.aspx?cateKey=xwzx" class="nav_list_a"&新闻资讯&/a&&&&&&&&&&/li&&&&&&&&&li class="nav-text"&&&&&&&&&&a class="current" href="/portal/news.aspx?cateKey=bzzx" class="nav_list_a"&帮助中心&/a&&&&&&&&&&/li&&&&&&&&&li class="nav-text"&&&&&&&&&&a class="current" href="http://xiazai.upol.cn/media/zhuanye/main1.htm" class="nav_list_a"&专业设置&/a&&&&&&&&&&/li&&&&&&&&&/ul&&&&&&/div&&&&&/div&&&&&div class="container"&&&&&&&div class="content-left"&&&&&&&&div class="divHead"&招生专区&/div&&&&&&&&div class="list-left"&&&&&&&&ul&&&&&&&&&li&&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=zxbm&newsId=ccaddahrwadels6hppuq5y46kfg" class="text-t"&在线报名&/a&&&&&&&&&/li&&&&&&&&&li&&&&&&&&&a href="http://www.upol.cn/new/zhaos/2017/" class="text-t"&招生简章&/a&&&&&&&&&/li&&&&&&&&&li&&&&&&&&&a href="http://xg.sdcen.cn:82/study/Login.aspx" class="text-t"&入学考试&/a&&&&&&&&&/li&&&&&&&&&li&&&&&&&&&a href="/stuManager/getAdmission.aspx?schoolId=5de--d4e44ac14e44" class="text-t"&录取查询&/a&&&&&&&&&/li&&&&&&&&/ul&&&&&&&&/div&&&&&&&/div&&&&&&&div class="content-middle"&&&&&&&&img src="./img/石大.png" width="655.6px" height="270px" style="margin-top:-290 position: float:"/&&&&&&&/div&&&&&&&div class="content-right"&&&&&&&&div class="divHead"&系统登录&/div&&&&&&&&input type="text" name="username" placeholder="用户名" minlength="1" class="username"/&&&&&&&&&!--&span class="textBg"&&/span&--&&&&&&&&input type="password" name="password" placeholder="密码" minlength="1" class="password"/&&&&&&&&&!--&span class="psdBg"&&/span&--&&&&&&&&&input type="button" class="button" name="logo" value="登录" /&&&&&&&&&a href="/portal/resetpwd.aspx" class="forget-password"&忘记密码?&/a&&&&&&&/div&&&&&&& &div style="clear:"&&/div&&&&&&&div class="content-1"&&&&&&&&div class="conten-nav-top"&联系我们&/div&&&&&&&&img src="img/contect.png" width="220" height="150" style="margin-left: 10margin-top: 15"& /&&&&&&&&&div class="phone"&统一服务热线:&&&&&&&&&span class="tel-phone" style="color:"&400-640-1953&/span&&&&&&&&&/div&&&&&&&&&div class="addr"&地址:青岛市黄岛区长江西路66号&& 中国石油大学(华东)&&&&&&&&&&&&&&&&&&&&&&&&&& &/div&&&&&&&/div&&&&&&&div class="content-2"&&&&&&&&div class="conten-nav-top"&新闻资讯&/div&&&&&&&&img src="img/小图像.jpg" width="180px"&&&&&&&height="100px" style="margin: 15" / &&&&&&&&&div class="text-contect"&&&&&&&&&div class="text-1"&&&&&&&&&教育发展中心与灵山卫街道办共...&&&&&&&&/div&&&&&&&&&div class="text-2"&&& &&&&&&&&4月12日,教育发展中心与青岛市黄岛区灵山卫成人教育中心共同在灵山卫社区中心举行灵山卫社区教育学院揭...&&&&&&&&/div&&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=xwtp&newsId=nduxafwnubvgq18kjcffka"&&&&&&&&&&span class="learn"&了解详情&/span&&&&&&&&&/a&&&&&&&&/div&&&&&&&&div class="newsList"&&&&&&&&&ul&&&&&&&&&&li&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=lougahanmlfjegg4uezmxw" title="远程教育学院举行学习中心管理人员业务培训" target="_blank" class="text-s"&远程教育学院举行学习中心管理...&/a&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=sxiwafwna6xfjbr4ql0t5w" title="学校发布2016年度继续教育质量报告" target="_blank" class="text-s"&学校发布2016年度继续教育质量...&/a&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=zduxavonabhfubym08bylg" title="远程教育学院在瑞智(青岛)公司举行首届专场毕业典礼" target="_blank" class="text-s"&远程教育学院在瑞智(青岛)公...&/a&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=m5-4aeanqp1adclgxe6usw" title="我校举行现代远程教育2017年学士学位授予仪式" target="_blank" class="text-s"&我校举行现代远程教育2017年学...&/a&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=huinatynob1czz81eqlimq" title="全国高等学历继续教育专业管理与公共信息服务平台启用培训成功举行" target="_blank" class="text-s"&全国高等学历继续教育专业管理...&/a&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=gwmnadmnb6tff57dldztza" title="全国高等学历继续教育专业管理与公共信息服务平台启用培训成功举行" target="_blank" class="text-s"&全国高等学历继续教育专业管理...&/a&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=4lamadmnpo5mdf3439pudg" title="教育发展中心谋划部署2017年各项工作" target="_blank" class="text-s"&教育发展中心谋划部署2017年各...&/a&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xwzx&newsId=872ladmnbpjh8d07wozxsa" title="国家发改委国际合作中心执行总监马兰来校洽谈交流" target="_blank" class="text-s"&国家发改委国际合作中心执行总...&/a&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&/ul&&&&&&&&/div&&&&&&&&/div&&&&&&&div class="content-3"&&&&&&&&div class="conten-nav-top"&教学专区&/div&&&&&&&&div class="teachBox"&&&&&&&&&ul&&&&&&&&&&li class="teachTwo"&&&&&&&&&&&a href="http://course.upol.cn/tongkao/index.asp" class="text-p"&网络统考&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachThree"&&&&&&&&&&&a href="http://xl.upol.cn/portal/news.aspx?cateKey=ycdb" class="text-p"&远程答辩&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachFour"&&&&&&&&&&&a href="http://course.upol.cn/xuewei/index.asp" class="text-p"&学位辅导&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachFour current"&&&&&&&&&&&a href="http://open.upol.cn/mooc/" class="text-p"&MOOC石大&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachOne"&&&&&&&&&&&a href="http://www.upol.cn/rms/cyxt/" class="text-p"&翠园学堂&/a& &&&&&&&&&/li&&&&&&&&&/ul&&&&&&&&&&&li class="teachTwo" &&&&&&&&&&&a href="http://course.upol.cn/tongkao/index.asp" class="text-p"&网络统考&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachThree"&&&&&&&&&&&a href="http://xl.upol.cn/portal/news.aspx?cateKey=ycdb" class="text-p"&远程答辩&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachFour"&&&&&&&&&&&a href="http://course.upol.cn/xuewei/index.asp" class="text-p"&学位辅导&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachFour current"&&&&&&&&&&&a href="http://open.upol.cn/mooc/" class="text-p"&MOOC石大&/a&&&&&&&&&&/li&&&&&&&&&&li class="teachOne"&&&&&&&&&&&a href="http://www.upol.cn/rms/cyxt/" class="text-p"&翠园学堂&/a& &&&&&&&&&/li&&&&&&&&&/ul&&&&&&&&/div&&&&&&&/div&&&&&&&&&div style="clear:"&&/div&&&&&&&div class="content-4"&&&&&&&&div class="conten-nav-top"&联系我们&/div&&&&&&&&div class="informBox"&&&&&&&&&ul&&&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=tzgg&newsId=9g-8ak2nll5bjirui4-weq" title="2017年9月PETS3级考试辅导启动啦!"&&& &&&&&&&&&li&&&&&&&&&&&span&07-11&/span&&&&&& &&&&&&&&2017年9月PETS3级考试辅导启动...&&&&& &&&&&&&&&/li&&&&&&&&&&/a&& &&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=tzgg&newsId=e70ray2n0ipbouc9qutg8q" title="2017年上半年学位外语成绩申报结果公示"&&&&& &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&& &span&06-09&/span&&&&&&&&&&&&& 2017年上半年学位外语成绩申报...&&&&&&&&&&&& &/li&&&&&&&&&&/a&&&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=tzgg&newsId=ztjbai2n47pdejymeqr5-g" title="关于2017年下半年全国英语等级考试的报考通知"&&&&&&&&&&&li&&&&& &&&&&&&&&&&&& &span&06-09&/span&&&&&&&&&&&&&& 关于2017年下半年全国英语等级...&&&&&&&&&&&& &/li&&&&&&&&&&&/a&&&&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=tzgg&newsId=od6lahyne4hl-mhsdeogww" title="关于转发2017年4月统考成绩复核工作的通知"&&&&&&&&&&&&li&&&&& &&&&&&&&&&&&& &span&05-23&/span&&&&&&&&&&&&&& 关于转发2017年4月统考成绩复核...&&&&&&&&&&&&& &/li&&&&&&&&&&&/a&&&&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=tzgg&newsId=xcgvawqnbjdex1bcnomavg" title="关于2017年9月份网络统考整体流程的通知"&&&&&&&&&&&&li&&&&& &&&&&&&&&&&&& &span&05-05&/span&&&&&&&&&&&&&& 关于2017年9月份网络统考整体流...&&&&&&&&&&&&& &/li&&&&&&&&&&&/a&&&&&&&&&&&a href="/portal/newsdetail.aspx?cateKey=tzgg&newsId=yy4vawqn07leaeetyfcgvq" title="关于2017年9月网络统考跨省异地报考有关事项的通知"&&&&&&&&&&&&li&&&&& &&&&&&&&&&&&& &span&05-05&/span&&&&&&&&&&&&&& 关于2017年9月网络统考跨省异地...&&&&&&&&&&&&& &/li&&&&&&&&&&&/a&&&&&&&&&/ul&&&&&&&&/div&&&&&&&/div&&&&&&&div class="content-5"&&&&&&&&div class="conten-nav-top"&新闻资讯&/div&&&&&&&&div class="dynamicBox"&&&&&&&&&ul&&&&&&&&&&li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=zdi7ak2ns59opjokt9b4bw" title="2017年9月PETS3级考试辅导启动啦!" class="text-x"&2017年9月PETS3级考试辅导启动...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=qpwsaiwn-j9ij45lt3hs2w" title="关于发布《2017年秋季学期教学运行计划》的通知" class="text-x"&关于发布《2017年秋季学期教学...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=vyuxagsnjphhhlgp-h07da" title="关于发布2017春季学期期末考试工作的通知" class="text-x"&关于发布2017春季学期期末考试...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=yi-qacqnk6nmbwd7owcisq" title="关于做好2016秋季学期课程补考工作的通知" class="text-x"&关于做好2016秋季学期课程补考...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=eqfaaccndkpj729penfdaw" title="2017年3月PETS3级考试辅导启动啦!" class="text-x"&2017年3月PETS3级考试辅导启动...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=zo2jahmmdz9dobfft8jvkg" title="关于做好2016春季学期课程补考工作的通知" class="text-x"&关于做好2016春季学期课程补考...&/a&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=2yajahmm6kfcjeu8mh6zqw" title="2016年9月PETS3级考试辅导启动啦!" class="text-x"&2016年9月PETS3级考试辅导启动...&/a&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=ggejahmmm5jjm3nwz5o24q" title="2016年9月计算机统考视频辅导开始啦!" class="text-x"&2016年9月计算机统考视频辅导开...&/a&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=jxdt&newsId=0hqhahmmnbrp-jfzrc33va" title="2016年4月《计算机应用基础》统考辅导答疑安排" class="text-x"&2016年4月《计算机应用基础》统...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&/ul&&&&&&&&/div&&&&&&&/div&&&&&&&div class="content-6"&&&&&&&&div class="conten-nav-top"&教学专区&/div&&&&&&&&div class="dynamicBox"&&&&&&&&&ul&&&&&&&&&&li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=iegdauanazzkvgvd-rvd3g" title="我校举行现代远程教育2017年学士学位授予仪式" class="text-x"&我校举行现代远程教育2017年学...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &&span&&/span&&&&&&&&&&/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=qcaiahmmmjviwaqhw23smq" title="我校举行现代远程教育2015年学士学位授予仪式" class="text-x"&我校举行现代远程教育2015年学...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=uqoiahmmvl9khpa8tupmiw" title="远程教育2015年秋季批次 毕业设计(论文)答辩评审工作顺利结束" class="text-x"&远程教育2015年秋季批次 毕业设...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=n4kiahmmg7hh79ogys3rug" title="谋发展,促共赢 —校企合作带来招生春天" class="text-x"&谋发展,促共赢 —校企合作带来...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=vf-iahmmrytf0b1k-wtmzg" title="远程教育学院 举办2016年新建学习中心管理人员业务培训会" class="text-x"&远程教育学院 举办2016年新建学...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=5uciahmmorjehona07ws6q" title="新生二次导学暨职业生涯规划专题讲座顺利举办" class="text-x"&新生二次导学暨职业生涯规划专...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=2r2iahmm7q5ezn9ceefpeq" title="青岛直属学习中心举办剪纸艺术传统文化讲座" class="text-x"&青岛直属学习中心举办剪纸艺术...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=1fwhahmmwldlj6elyo6nig" title="东营直属学习中心举办“办公综合能力提升”讲座开讲" class="text-x"&东营直属学习中心举办“办公综...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&&&&&&&&& &li&&&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&&& &a href="/portal/newsdetail.aspx?cateKey=xywh&newsId=kduhahmmyiloc5ywn9shjw" title="东营直属学习中心“两学一做”专题教育活动讲座开讲" class="text-x"&东营直属学习中心“两学一做”...&/a&&&&&&&&&&&&&&&&& &&&&&&&&&&&&&&&&& &span&&/span&&&&&&&&&&&&&&&&& &/li&&&&&&&&&/ul&&&&&&&&/div&&&&&&&/div&&&&&&&/div&&&&&&&&&/div&&&&&&div class="majorBox"&&&&&&&div class="conten-nav-top-1"&课程推荐&/div&&&&&&&div class="majorcontect"&&&&&&ul&&&&&&&&&&&&li&&&&&&&&&&&&&& &a href="http://course.upol.cn/jpk2009/wlhx/index.asp?fs=view"&&&&&&&&&&&&&& &img src="./img/major-1.jpg"&&&&&&&&&&&&&& &p&物理化学&/p&&&&&&&&&&&&&& &/a&&&&&&&/li&&&&&&&&&&&&li&&&&&&&&&&&&&& &a href="http://www.upol.cn/jpk2010/hjjc/"&&&&&&&&&&&&&& &img src="./img/major-2.jpg"&&&&&&&&&&&&&& &p&环境监测&/p&&&&&&&&&&&&&& &/a&&&&&&&/li&&&&&&&&&&&&&&& &&&&li&&&&&&&&&&&&&&& &a href="http://course.upol.cn/jpk2009/diangong/index.asp?fs=view"&&&&&&&&&&&&&&& &img src="./img/major-3.jpg"&&&&&&&&&&&&&&& &p&电工电子学&/p&&&&&&&&&&&&& &/a&&&&&&&&&& &&&&/li&&&&&&&&&& &&&&&&&&&&&& &&&&&&&&&&&& &&&&&li&&&&&&&&&&&&&&& &a href="http://www.upol.cn/jpk2012/gzdzx/index.html"&&&&&&&&&&&&&&& &img src="./img/major-4.jpg" width="104px" height="74px"&&&&&&&&&&&&&&& &p&构造地质学&/p&&&&&&&&&&&&& &/a&&&&&&&&&& &&&&&/li&&&&&&&&&& &&&&&&&&&&&& &&&&&&&&&&&& &&&&&li&&&&&&&&&&&&&&& &a href="http://www.upol.cn/jpk2010/yksj/"&&&&&&&&&&&&&&& &img src="./img/major-5.jpg" width="104px" height="74px"&&&&&&&&&&&&&&& &p&油库设计与管理&/p&&&&&&&&&&&&& &/a&&&&&&&&&& &&&&&/li&&&&&&&&&& &&&&&&&&&&&& &&&&&&&&&&&& &&&&&li&&&&&&&&&&&&&&& &a href="http://www.upol.cn/jpk2010/caiyou/"&&&&&&&&&&&&&&& &img src="./img/major-6.gif" width="104px" height="74px"&&&&&&&&&&&&&&& &p&采油工程&/p&&&&&&&&&&&&& &/a&&&&&&&&&& &&&&&/li&&&&&&&&&& &&&&/ul&&&&&/div&&&&/div&&&&div class="majorBox-link-box" style="margin-top: 20"&&&&&div class="conten-nav-top-1"&友情链接&/div&&&&&div class="box-text"&&&&&&ul&&&&&&&li&&&&&&&&a href="http://www.upc.edu.cn"&中国石油大学(华东)&/a&&&&&&&/li&&&&&&&li&&&&&&&&a href="http://www.upol.cn"&中国石油大学教育发展中心&/a&&&&&&&/li&&&&&&&li&&&&&&&&a href="http://www.sdcen.cn"&山东省继续教育公共服务平台&/a&&&&&&&/li&&&&&&/ul&&&&&/div&&&&/div&&&&div class="footer"&&&&&div class="jszc"&&&&&&&&&&&&& & 技术支持:山东和学教育科技有限公司&&& 中国石油大学(华东)教育发展中心&&&&&&&&&&& &/div&&&&&&&&&&&& &div class="tel-1"&&&&&&&&&&&& &联系电话:400-640-1953&&& 联系地址:青岛市黄岛区长江西路66号 中国石油大学(华东)&&&&&&&&&&& &/div&&&&&&&&&&&& &div class="ad"& &&&&鲁ICP备号&&&&&&&&& &&&&&&&&&&& &/div&&&&/div&&&&/div&&&/body&&/html&
12345678910
12345678910
12345678910 上一篇:下一篇:文章评论相关解决方案 1234567891011 Copyright & &&版权所有

我要回帖

更多关于 html拖拽布局生成页面 的文章

 

随机推荐