笔记3

  • 1.CSS定位
    • relative
    • absolute
    • fixed
    • sticky
    • 练习
  • 2.CSS省略器
  • 3.CSSsprite
  • 4.CSS圆角
  • 5.博文尚美练习
  • 6.PC游戏网页简易练习

1.CSS定位

position:
static(默认)
relative
absolute:绝对定位
fixed:固定定位
sticky:粘性定位

relative

如果没有定位偏移量,对元素本身没有任何影响
不使元素脱离文档流
不影响其他元素布局
left,right,top,bottom是相对于其他元素偏移的

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>#box1{width: 100px;height: 100px;background:red ;}#box2{width: 100px;height: 100px;background:blue ;position:relative ;top:   100px;}#box3{width: 100px;height: 100px;background:yellow ;}</style>
</head>
<body><div id="box1"></div><div id="box2"></div><div id="box3"></div>
</body>
</html>

absolute

使元素完全脱离文档流
不使元素脱离文档流(让内联具备块特性)
使块元素默认宽根据内容决定(让块具备内联的特性)
如果有定位祖先元素相对于定位祖先元素发生偏移,没有定位祖先元素相对于整个文档发生偏移(绝对,相对,固定)

 <style>#box1{width: 100px;height: 100px;background:red ;position:absolute ;}#box2{width: 200px;height: 200px;background:blue ;}</style>
</head>
<body><div id="box1"></div><div id="box2"></div></body>

fixed

使元素完全脱离文档流
使内联元素脱离宽高(让内联具备块特性)
使块元素默认宽根据内容决定(让块具备内联的特性)
相对于整个浏览器窗口进行偏移,不收浏览器的滚动条影响

    <title>Document</title><style>body{width: 1000px;}#box1{width: 300px;height: 300px;border: 1px black solid;margin: 200px;position: ;}#box2{width: 100px;height: 100px;background: red;position: fixed;left: 0px;top: 0px;}</style>
</head>
<body>
<div id="box1">蓝色</div>
<div id="box2">红色</div>
</body>
</html>

sticky

指定位置,进行粘性操作
z-index
默认层级为0
嵌套时候的层级问题

<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=, initial-scale=1.0"><title>Document</title><style>*{margin: 0px;padding: 0px;}ul{list-style: none;}#menu{width: 100px;height: 30px;margin: 20px auto;border: 1px black solid;position: relative;}#menu ul{width: 100px;border: 1px black solid;position: absolute;left:-1px;top:30px;background:blue;display: none;}#menu:hover ul{display: block;}#menu ul li :hover{background:gray;}p{text-align: center;}</style>
</head>
<body><div id="menu">卖家中心<ul ><li>商品1</li><li>商品2</li><li>商品3</li><li>商品4</li><li>商品5</li></ul></div><p>测试段落商品1商品1商品1商品1商品1</p>
</body>
</html>

练习

<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title><style>#box1{width: 300px;height: 300px;border: 1px black solid;position: relative}#box2{width: 100px;height: 100px;background: cornflowerblue;position: absolute;left: 50%;top: 50%;margin: -50px;}</style>
</head>
<body><div id="box1"><div id="box2"></div></div>
</body>
</html>

2.CSS省略器

width
必须有一个固定的宽
white-space:nowrap
不让内容折行
overflow:hidden
隐藏溢出的内容
text-overflow:ellipsis
添加省略号

3.CSSsprite

特性:CSS雪碧也叫CSS精灵,是一种网页图片的处理方式。它允许你将一个网页的所有零星图片都包含到一个大图片里处理
好处:可以减少图片的质量,网页图片的加载速度较快
减少图片的请求次数,加快网页打开

4.CSS圆角

border-radius
给标签添加圆角

5.博文尚美练习

博文尚美.html

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>博文尚美</title><link rel="stylesheet" href="./博文尚美.css"><style>#banner{position: relative;}#banner .banner_list{width: 100%;height: 469px;position: relative;}#banner .banner_list li{ width: 100%;height:  469px;background:center 0 no-repeat;position:absolute ;left: 0;top: 0;opacity: 0;z-index: 1;}#banner .banner_list li a{display: block;width: 100%;height: 100%;}#banner .banner_list li.active{opacity: 1;z-index: 10;}#banner .banner_btn{width: 100%;position: absolute;bottom: 19px;z-index: 20;font-size: 0;text-align: center;}#banner .banner_btn li{display: inline-block;width: 12px;height: 12px;border: 2px solid white;border-radius: 50%;box-sizing: border-box;margin:0 60px;cursor: pointer;}#banner .banner_btn li .active{background: white;}#service{overflow: hidden; min-height: 407px;}#service .service_list{text-align: center;}#service .service_list li{float: left;width: 250px;margin: 0 10px;}#service .service_list div{width: 102px; ;height:102px  ;margin: 0 auto;}#service .service_list li:nth-of-type(1) div{background-image: url(./web1.png);}#service .service_list li:nth-of-type(2) div{background-image: url(./mail1.png);}#service .service_list li:nth-of-type(3) div{background-image: url(./graphic1.png);}#service .service_list li:nth-of-type(4) div{background-image: url(./e-bussiness1.png);}#service .service_list h3{font-size: 18px;color:#434343 ;line-height: 36px;margin-top: 25px;}#service .service_list p{font-size: 20px;color: #6d6d6d;line-height: 22px;}#case{background: #f8f8f8;}
#case .caontainer{min-height: 460px;overflow: hidden;}
#case .area_title{margin-top: 56px;}
#case .area_title h2{color: #66c5b4;}
#case .case_list {margin-top: 28px;}
#case .case_list li{float:left;width: 340px;margin: 0 10px;}
#case .case_btn {width: 176px;height: 37px;background: #66c5b4;margin: 0 auto;border-radius: 25px;
line-height: 37px;text-align: center;color:white;font-size: 14px;margin-top: 36px;}#case .case_btn a{display: block;width: 100%;height: 100%;color: white;}#news{min-height: 450px;overflow: hidden;}#news .area_title{margin-top: 65px;}#news .area_title dl{margin-top: 48px ;}#news dt{width: 234px;}#news dd{width:846px ;}#news .news_list{width: 100%;}#news .news_list li{width: 50%;float: left;margin-bottom: 48px;}#news .news_date{width: 71px;border: right 1px solid #dcdcdc;}#news .news_date i{color: #66c5b4;font-size: 39px  ;display: block;font-weight: bold;}#news .news_date span{color: #999999;font-size: 20px;line-height: 36px;}#news .news_text{width: 310px;margin-left: 20px;}#news .news_text h3{font-size: 14px;}#news .news_text h3 a{color: #3f3f3f;}#news .news_text p{color:#a4a4a4;font-size: 12px;line-height: 21px; margin-top: 17px;}</style></head><body><div id="head" class="container"><div class="head_logo l"><a href="#"><img src="./logo.png" alt="博文尚美" title="博文尚美"></a></div><ul class="head_menu r"><li><a href="#">HOME</a></li><li><a href="#">ABOOUT</a></li><li><a href="#">PROTFOLIO</a></li><li><a href="#">SERVICE</a></li><li><a href="#">NEWS</a></li><li><a href="#">CONTACT</a></li></ul></div><div id="banner" class="container_fluid" ><ul class="banner_list" ><li class="active" style=" background-image: url(./banner.png) ;"><a href="#" ></a></li><li class="active" style=" background-image: url(./banner.png)  ;"><a href="#"></a></li></ul><ol class="banner_btn" style="width: 100%;position: absolute;bottom: 19px;z-index: 20;font-size: 0;text-align: center;"><li class="active" style="display: inline-block;width: 12px;height: 12px;border: 2px solid white;border-radius: 50%;box-sizing: border-box;margin:0 60px;cursor: pointer;"></li> <li style="display: inline-block;width: 12px;height: 12px;border: 2px solid white;border-radius: 50%;box-sizing: border-box;margin:0 60px;cursor: pointer;"></li> <li style="display: inline-block;width: 12px;height: 12px;border: 2px solid white;border-radius: 50%;box-sizing: border-box;margin:0 60px;cursor: pointer;"></li> <li style="display: inline-block;width: 12px;height: 12px;border: 2px solid white;border-radius: 50%;box-sizing: border-box;margin:0 60px;cursor: pointer;"></li>        </ol></div><div id="service" class="container"><div class="area_title"><h2>服务范围</h2><p>OUR SERVICE</p></div><ul class="service_list">
<li><div></div><h3>1.WEB DESIGN</h3><p>企业品牌网站设计/手机网站制作<br>动画网站创意设计</p>
</li>
<li><div></div><h3>2.WEB DESIGN</h3><p>企业品牌网站设计/手机网站制作<br>动画网站创意设计</p>
</li>
<li><div></div><h3>3.WEB DESIGN</h3><p>企业品牌网站设计/手机网站制作<br>动画网站创意设计</p>
</li>
<li><div></div><h3>4.WEB DESIGN</h3><p>企业品牌网站设计/手机网站制作<br>动画网站创意设计</p>
</li></ul></div><div id="case" class="container_fluid"><div class="container"><div class="area_title"><h2>{客户案例}</h2><p>With the best professional technology,to design the best innocative site</p></div><ul  class="case_list clear"><li><a href="#"><img src="./20141121095216750.png" alt></a></li><li><a href="#"><img src="./20141121095528549.png" alt></a></li><li><a href="#"><img src="./20141121105856226.png" alt></a></li></ul><div class="case_btn"><a href="#">VIEW MORE</a></div></div></div><div id="news" class="container"><div class="area_title"><h2>最新资讯</h2><p>TEN LATEST NEWS</p></div><dl><dt class="l"><img src="./xs1.png" alt=""></dt><dd class="l"><ul class="news_list"><li><div class="news_date l"><i>09</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">网站排名进入前三的技巧说明</a></h3><p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站就...</p></div></li><li><div class="news_date l"><i>08</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">网站排名进入前三的技巧说明</a></h3><p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站就...</p></div></li><li><div class="news_date l"><i>07</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">网站排名进入前三的技巧说明</a></h3><p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站就...</p></div></li><li><div class="news_date l"><i>06</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">网站排名进入前三的技巧说明</a></h3><p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站就...</p></div></li></ul></dd></dl></div><div id="foot" class="container_fluid"><div class="container"><p class="l">Copyright 2019 Bowenshangmei Culyure All Rights Reserved</p><div class="r"><a href="#">Home</a>|<a href="#">About</a>|<a href="#">Portfolio</a>|<a href="#">Contact</a></div></div></div>
</body>
</html>

博文尚美.css

*{margin: 0;padding: 0;}
ul,ol{list-style-type: none;}
img{display: block;}
a{text-decoration: none;color: #646464;}
h1,h2,h3{font-size: 16px;}
body{font-family: Arial,微软雅黑;}.l{float: left;}
.r{float: right;}
.clear:after{content :"";display:block;clear: both;}
.container{width: 1080px;margin: 0 auto;position: relative;}
.container-fluid{width: 100%;}#head{height: 81px;}
#head .head_logo{width: 162px;height: 44px; margin-top: 19px;;}
#head .head_menu{font-size: 14px;line-height: 81px;}
#head .head_menu li{float: left;margin-left: 58px; }.area_title{margin-top: 61px;text-align: center;}
.area_title h2{font-size: 20px;line-height: 20px;height: 20px;color: #363636;background: url(./title_bg.png) no-repeat center 7px;font-weight: normal;}
.area_title p{color: #9f9f9f;font-size: 14px;line-height: 34px;}#foot{background: #66c5b4;}
#foot .container{height:54px ;line-height: 54px;font-size: 12px;color: white;}
#foot .div{}
#foot .div a{color: white;margin: 0 10px;}

展示效果


6.PC游戏网页简易练习

<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>《率土之滨》手游官网</title><link rel="shortcut icon" type="image/x-icon" href="./PCSTZBimages/周姬.png"/><link rel="stylesheet" href="./PC端游戏网页制作.css"><style>#main{background: url(./PCSTZBimages/小乔.png)  center 0 ;height: 1920px;width: 100%;}#nav{height: 116px;background: url(./PCSTZBimages/背景栏.png);}#service{overflow: hidden; min-height: 407px;}#service .service_list{text-align: center;}#service .service_list li{float: left;width: 250px;margin: 0 10px;}#service .service_list div{width: 102px; ;height:102px  ;margin: 0 auto;}#service .service_list li:nth-of-type(1) div{background-image: url(./PCSTZBimages/周姬.png);}#service .service_list li:nth-of-type(2) div{background-image: url(./PCSTZBimages/灵帝.png);}#service .service_list h3{font-size: 18px;color:rgb(167, 58, 58,) ;line-height: 36px;margin-top: 25px;}#service .service_list p{font-size: 20px;color: rgb(167, 58, 58,);line-height: 22px;}#news{min-height: 450px;overflow: hidden;}#news .area_title{margin-top: 65px;}#news .area_title dl{margin-top: 48px ;}#news dt{width: 234px;}#news dd{width:846px ;}#news .news_list{width: 100%;}#news .news_list li{width: 50%;float: left;margin-bottom: 48px;}#news .news_date{width: 71px;border: right 1px solid #dcdcdc;}#news .news_date i{color: rgb(43, 46,54)4;font-size: 39px  ;display: block;font-weight: bold;}#news .news_date span{color: rgb(43, 46,54);font-size: 20px;line-height: 36px;}#news .news_text{width: 310px;margin-left: 20px;}#news .news_text h3{font-size: 14px;}#news .news_text h3 a{color: rgb(43, 46,54)}#news .news_text p{color:#a4a4a4;font-size: 12px;line-height: 21px; margin-top: 17px;}</style></style>
</head>
<body><div id="head" class="container-fluid"><div class="container"><div class="head_logo l"><a href="#">网易游戏</a></div><div class="head_ad l"><a href="#"><img src="./PCSTZBimages/网易游戏.png" alt="网易广告" title="网游游戏"></a></div><div class="head_menu r"><div class="head_menu_gwsy l">
<a href="#">官网首页</a></div><div class="head_menu_match l"><a href="#">赛事汇总</a></div></div></div></div><div id="main" class="container-fluid"><div id="nav" class="container-fluid"></div><div id="case" class="container_fluid"><div class="container"><div class="area_title"><h3>{客户案例}</h3><p>With the best professional technology,to design the best innocative site</p></div><ul  class="case_list clear"><li><a href="#"><img src="./PCSTZBimages/灵帝.png" alt></a></li><li><a href="#"><img src="./PCSTZBimages/周姬.png" alt></a></li></ul><div class="case_btn"><a href="#">VIEW MORE</a></div></div></div></div><div id="news" class="container"><div class="area_title"><h2>最新资讯</h2><p>TEN LATEST NEWS</p></div><dl><dt class="l"><img src="./xs1.png" alt=""></dt><dd class="l"><ul class="news_list"><li><div class="news_date l"><i>09</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">三千家族集结,万人同台竞技!《率土之滨》长风破浪邀请赛震撼开幕</a></h3><p> 历经近半个月的赛前准备活动,《率土之滨》2022“长风破浪”邀请赛的三千家族,近万名参赛选手,均已选择好起兵阵营,只待大风起兮,便要乘长风破万里浪,于这个盛大的舞台之上,谱写属于自己的传奇。...</p></div></li><li><div class="news_date l"><i>08</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">三千家族集结,万人同台竞技!《率土之滨》长风破浪邀请赛震撼开幕</a></h3><p> 历经近半个月的赛前准备活动,《率土之滨》2022“长风破浪”邀请赛的三千家族,近万名参赛选手,均已选择好起兵阵营,只待大风起兮,便要乘长风破万里浪,于这个盛大的舞台之上,谱写属于自己的传奇。...</p></div></li><li><div class="news_date l"><i>07</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">三千家族集结,万人同台竞技!《率土之滨》长风破浪邀请赛震撼开幕</a></h3><p> 历经近半个月的赛前准备活动,《率土之滨》2022“长风破浪”邀请赛的三千家族,近万名参赛选手,均已选择好起兵阵营,只待大风起兮,便要乘长风破万里浪,于这个盛大的舞台之上,谱写属于自己的传奇。...</p></div></li><li><div class="news_date l"><i>06</i><span>Jan</span></div><div class="news_text l"><h3><a href="#">三千家族集结,万人同台竞技!《率土之滨》长风破浪邀请赛震撼开幕</a></h3><p> 历经近半个月的赛前准备活动,《率土之滨》2022“长风破浪”邀请赛的三千家族,近万名参赛选手,均已选择好起兵阵营,只待大风起兮,便要乘长风破万里浪,于这个盛大的舞台之上,谱写属于自己的传奇。...</p></div></li></ul></dd></dl></div><div id="foot" class="container_fluid"><div class="container"><p class="l">Copyright 2019 Bowenshangmei Culyure All Rights Reserved</p><div class="r"><a href="#">Home</a>|<a href="#">About</a>|<a href="#">Portfolio</a>|<a href="#">Contact</a></div></div></div>
</body>
</html>
*{margin: 0;padding: 0;}
ul il {list-style-type: none;}
img{display: block;}
a{text-decoration: none;}
h1,h2,h3{font-size: 16px;}.l{float: left;}
.r{float:right;}
.clear:after{content:"";display: block;clear: both;}
.container{width: 980px;margin: 0 auto;position: relative;}
.container-fluid{width: 100%;}#head{background-color: rgb(255, 255, 255 );height: 84px;width: 100%;}
#head .container{height: 60px;}
#head .head_logo{width: 280px;height: 125px;
background: url(./PCSTZBimages/月明千里\ 梦留汴京.png) no-repeat 0 15px ;width: 456px;}
#head .head_logo a {display: block;width: 100%;height: 100%;text-indent: -999px;overflow: hidden;}
#head .head_ad a img{margin-top: 20px; display: block;margin-left: 30px;}
#head .head_menu{font-size: 18px ;}
#head .head_menu div{height: 56px;margin-top: 35px;}
#head .head_menu_gwsy{margin-right: 65px;}
#head .head_menu a{color: black;}.area_title{margin-top: 61px;text-align: center;}
.area_title h2{font-size: 20px;line-height: 20px;height: 20px;color: #363636;background: url(./title_bg.png) no-repeat center 7px;font-weight: normal;}
.area_title p{color: #9f9f9f;font-size: 14px;line-height: 34px;}#foot{background: rgb(9, 9, 9);}
#foot .container{height:54px ;line-height: 54px;font-size: 12px;color: white;}
#foot .div{}
#foot .div a{color: white;margin: 0 10px;}


【web前端开发教程】相关推荐

  1. 推荐20个很有帮助的 Web 前端开发教程

    在平常的搜索中,我碰到过很多有趣的信息,应用程序和文档,我把它们整理在下面这个列表.这是收藏的遇到的有用内容的一个伟大的方式,可以在你需要的时候方便查阅.相信你会在这个列表中发现对你很有用的资料. 您 ...

  2. Delphi Web应用开发B/S框架推荐:《Delphi Web前端开发教程——基于TMS WEB Core框架》

    使用TMS WEB Core 发现Delphi软件开发的无限潜能-- 二十多年来,编程语言Delphi 以对 Windows 应用程序的快速可视化编程而闻名于世.尤其是轻松开发桌面数据库应用程序和快捷 ...

  3. 国内外的自学web前端开发教程网站

    @TOC有哪些自学web前端开发教程网站? 国内外有哪些自学web前端开发教程网站? https://www.w3cl.com 第一个着力推荐 http://codyhouse.co/library ...

  4. Delphi Web前端开发教程(9):基于TMS WEB Core框架

    3.REST Servers服务端(后端)框架 REST服务端特点: - 为远程资源提供一个REST API接口.也可以为其他网络内容提供服务: - 包括在Delphi Enterprise & ...

  5. Delphi Web前端开发教程(2):基于TMS WEB Core框架

    简介 Delphi是软件行业的传奇编程语言之一,该产品于1995年2月14日情人节在美国San Francisco(旧金山)正式发布,她是软件开发历史的基石.今天随着IT科技的飞速发展,各种新平台和框 ...

  6. Delphi Web前端开发教程(4):基于TMS WEB Core框架

    图 Delphi开发的即时战略游戏软件<Knights Province> 图 Delphi开发的猎鹰9火箭模拟仿真软件<Falcon 9 – First Stage Simulat ...

  7. Delphi Web前端开发教程(5):基于TMS WEB Core框架

    Delphi/Object Pascal的历史与现状 从技术上讲,Delphi 是一个由 Object Pascal 编程语言支持并为其提供开发环境的IDE,可以实现高生产力和快速应用程序开发的工具. ...

  8. 20个很有帮助的 Web 前端开发教程

    在平常的搜索中,我碰到过很多有趣的信息,应用程序和文档,我把它们整理在下面这个列表.这是收藏的遇到的有用内容的一个伟大的方式,可以在你需要的时候方便查阅.相信你会在这个列表中发现对你很有用的资料. 1 ...

  9. CSS盒子模型居中方法,web前端开发教程视频

    前言 下面分享了一些关于腾讯,酷狗,字节(实习的)面试真题,让大家参考.大家也自己去收集整理其他的面试题,可以通过这些面试题,查看自己的不足,也可以了解自己想要去的公司容易出现的面试题,进行有针对性复 ...

  10. jstl 获取 javascript 定义的变量_前端开发大牛完整总结出了JavaScript 难点 +最新web前端开发教程...

    1. 立即执行函数 立即执行函数,即Immediately Invoked Function Expression (IIFE),正如它的名字,就是创建函数的同时立即执行.它没有绑定任何事件,也无需等 ...

最新文章

  1. 2019中南大学考研计算机考试,中南大学2019年全国硕士研究生入学考试《计算机网络》考.PDF...
  2. 关于git经常忘记的:远程仓库关联。
  3. 速卖通现在好做吗?深耕产品供应,优化售后发货才能走的更远
  4. MySQLWorkbench链接MySQL数据库
  5. 微信 小程序组件 循环
  6. android studio方法的调用树,Android Studio 多层级 Module 对 aar 引用问题解决方法
  7. 《MATLAB信号处理超级学习手册》——2.7 本章小结
  8. [转发]在Visual Studio 2010/2012/2013/2015上使用C#开发Android/IOS安装包和操作步骤
  9. Golang1.6 官方支持embed 替换掉statilk
  10. Shell脚本学习(一)Shell命令基础
  11. 对联广告html,Js对联广告代码示例(入门)
  12. 浙江旅行新地标!图卷9号与法国著名建筑大师安东尼·贝叙共同打造
  13. sam文件获取与解密
  14. VMware Workstation Pro新建虚拟机的操作步骤
  15. 从“快稳省安全”看Chromium——Chromium学习系列
  16. qt 获取当前程序运行路径_Qt 程序获取程序所在路径、用户目录路径、临时文件夹等特殊路径的方法...
  17. 简述验证Anaconda是否安装成功的两种方式和Anaconda环境变量配置过程
  18. Markdown使用学习笔记(第一次,拉的很,别骂了,别骂了)
  19. matlab求近似解,matlab求近似解
  20. uva 1218 Perfect Service 树形dp

热门文章

  1. 一个人怎么做好社群的日常高效管理?
  2. 汉语拼音的36个韵母该怎么学?
  3. 2019全国计算机模拟题,2019年全国计算机二级Java考试模拟习题3
  4. 一元多项式因式分解的唯一性定理
  5. 订阅技术类型的公众号 究竟是为了什么?
  6. [译] 如果界面产品设计师设计实体产品
  7. upupoo视频使用Java代码下载
  8. 网络游戏——强联网游戏
  9. linux错误代码255,kubelet 服务启动失败, 错误代码 255
  10. 最新苹果手机iPhone各机型尺寸以及像素对照表