web蓝桥杯真题--11、蓝桥知识网_第11届蓝桥杯web真题

网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。

需要这份系统化的资料的朋友,可以点击这里获取!

一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!

请根据 mark.png 图片上的参数标注,补充 css/style.css 和 index.html 文件中的代码。对于 mark.png 上未标注的参数,请结合效果图自行调整。

页面版心宽度为 1024px,请保证版心居中,让页面呈现如下图所示的效果:

完成布局的显示效果

页面数据在 data.txt 文件中,直接复制即可。

规定

  • 请勿自定义页面数据,必须使用 data.txt 所提供的页面数据。
  • 请严格按照考试步骤操作,切勿修改考试默认提供项目中的文件名称、文件夹路径等,以免造成无法判题通过。

判分标准

  • 本题根据页面布局的相似度给分,低于 50% 得 0 分,高于 50% 则按比例给分。
解题思路:

一个一个拼凑,然后当一个页面有两个块元素在不同位置的两行上时,怎么让它门居中对齐呢,尝试过display:flex;  justify-content:center;  此种方法行不通,他会把两个元素摆在同一行上,然后margin:auto;  也行不通,毫无反应

后来发现可以在父元素里面设置text-align: center;设置文本标签居中对齐就可以了,有些知识点不用就忘了

整体代码:

html:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
    />
    <title>蓝桥知识网</title>
    <link rel="stylesheet" href="./css/style.css" />
  </head>
  <body>
    <!--TODO:请补充代码-->
    <div class="container">
      <div class="lanse">
        <div class="contain">
          <div class="one">
            <div class="lanqiao">蓝桥知识网</div>
            <div class="index">
              <span>首页</span>
              <span>热门技术</span>
              <span>使用手册</span>
              <span>知识库</span>
              <span>练习题</span>
              <span>联系我们</span>
              <span>更多</span>
            </div>
          </div>
          <div class="two">蓝桥云课</div>
          <div class="three">随时随地丰富你的技术栈!</div>
          <div class="four">
            <span>加入我们</span>
          </div>
        </div>
      
      </div>
      <div class="baise">
        <div class="lvse">
          <div class="one2">
            <div class="rengong">
              <div style="margin-bottom: 10px;  font-size: 30px; font-weight: 200; color: black;">人工智能</div>
              <span style="font-size: 18px; color: #aaa; line-height: 1.4em;">人工智能亦称智械、机器智能,指由人制造出来的机器所表现出来的智能。通常人工智能是指通过普通计算机程序来呈现人类智能的技术。
              </span>
            </div>
            <div class="qianduan">
              <div style="margin-bottom: 10px; font-size: 30px; font-weight: 200; color: black;">前端开发</div>
              <span style="font-size: 18px; color: #aaa; line-height: 1.4em;">前端开发是创建 WEB 页面或 APP 等前端界面呈现给用户的过程,通过 HTML,CSS 及 JavaScript 以及衍生出来的各种技术、框架、解决方案,来实现互联网产品的用户界面交互。

              </span>
            </div>
            <div class="houduan">
              <div style="margin-bottom: 10px; font-size: 30px; font-weight: 200; color: black;">后端开发</div>
              <span style="font-size: 18px; color: #aaa; line-height: 1.4em;">后端开发是实现页面的交互逻辑,通过使用后端语言来实现页面的操作功能,例如登录、注册等。
              </span>
            </div>
            <div class="xinan">
              <div style="margin-bottom: 10px; font-size: 30px; font-weight: 200; color: black;">信息安全</div>
              <span style="font-size: 18px; color: #aaa; line-height: 1.4em;">ISO(国际标准化组织)的定义为:为数据处理系统建立和采用的技术、管理上的安全保护,为的是保护计算机硬件、软件、数据不因偶然和恶意的原因而遭到破坏、更改和泄露。

              </span>
            </div>
          </div>
          <div class="dibu">
            <div class="yunke" style="font-size: 14px; color: #aaa; margin: auto;">
              © 蓝桥云课 2022
            </div>
            <div style="font-size: 14px; color: #aaa; margin-top: 10px;">
              京公网安备 11010102005690 号 | 京 ICP 备 2021029920 号
            </div>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>

css:

/*

 TODO:请补充代码

*/

\* {
    margin: 0;
  
    padding: 0;
  
    box-sizing: border-box;
  }
  
  .lanse {
    background-color: #a6b1e1;
  
    width: 100vm;
  
    height: 492px;
  
    display: flex;
  
    justify-content: center;
  }
  
  .lanse .contain {
    width: 1024px;
  
    height: 100%;
  }
  
  .lanse .contain .one {
    margin-top: 19px;
  
    height: 46px;
  
    display: flex;
  
    align-items: center;
  }
  
  .lanse .contain .one .index {
    margin-left: 365px;
  }
  
  .lanse .contain .one .index span {
    padding-right: 16px;
  
    font-size: 16px;
  
    color: white;
  }
  
  .lanse .contain .one .lanqiao {
    font-size: 18px;
  
    color: white;
  
    margin-left: 10px;
  }
  
  .lanse .contain .two {
    margin-top: 30px;
  
    font-size: 45px;
  
    color: black;
  
    display: flex;
  
    justify-content: center;
  }
  
  .lanse .contain .three {
    margin-top: 62px;
  
    font-size: 21px;
  
    font-weight: 200;
  
    color: white;
  
    display: flex;
  
    justify-content: center;
  }
  
  .lanse .contain .four {
    margin-top: 36px;
  
    display: flex;
  
    justify-content: center;
  }
  
  .lanse .contain .four span {
    font-size: 18px;
  
    color: #efbfbf;
  
    line-height: 40px;
  
    border-radius: 2px;
  
    width: 100px;
  
    display: flex;
  
    justify-content: center;
  
    box-shadow: inset 0 0 0 2px #efbfbf;
  }
  
  .lvse {
    /* background-color: #efbfbf; */
    height: 456px;
  
  }
  
  .lvse .one2 {
    /* background-color: #a54444; */
    width: 1024px;
    height: 302px;


![](https://img-blog.csdnimg.cn/img_convert/9a8cb5f8c0ec69e6499adead0da6e95b.png)


最全的Linux教程,Linux从入门到精通

======================

1.  **linux从入门到精通(第2版)**

2.  **Linux系统移植**

3.  **Linux驱动开发入门与实战**

4.  **LINUX 系统移植 第2版**

5.  **Linux开源网络全栈详解 从DPDK到OpenFlow**



![华为18级工程师呕心沥血撰写3000页Linux学习笔记教程](https://img-blog.csdnimg.cn/img_convert/59742364bb1338737fe2d315a9e2ec54.png)



第一份《Linux从入门到精通》466页

====================

内容简介

====

本书是获得了很多读者好评的Linux经典畅销书**《Linux从入门到精通》的第2版**。本书第1版出版后曾经多次印刷,并被51CTO读书频道评为“最受读者喜爱的原创IT技术图书奖”。本书第﹖版以最新的Ubuntu 12.04为版本,循序渐进地向读者介绍了Linux 的基础应用、系统管理、网络应用、娱乐和办公、程序开发、服务器配置、系统安全等。本书附带1张光盘,内容为本书配套多媒体教学视频。另外,本书还为读者提供了大量的Linux学习资料和Ubuntu安装镜像文件,供读者免费下载。



![华为18级工程师呕心沥血撰写3000页Linux学习笔记教程](https://img-blog.csdnimg.cn/img_convert/9d4aefb6a92edea27b825e59aa1f2c54.png)



**本书适合广大Linux初中级用户、开源软件爱好者和大专院校的学生阅读,同时也非常适合准备从事Linux平台开发的各类人员。**

> 需要《Linux入门到精通》、《linux系统移植》、《Linux驱动开发入门实战》、《Linux开源网络全栈》电子书籍及教程的工程师朋友们劳烦您转发+评论




**网上学习资料一大堆,但如果学到的知识不成体系,遇到问题时只是浅尝辄止,不再深入研究,那么很难做到真正的技术提升。**

**[需要这份系统化的资料的朋友,可以点击这里获取!](https://bbs.csdn.net/topics/618635766)**

**一个人可以走的很快,但一群人才能走的更远!不论你是正从事IT行业的老鸟或是对IT行业感兴趣的新人,都欢迎加入我们的的圈子(技术交流、学习资源、职场吐槽、大厂内推、面试辅导),让我们一起学习成长!**

  • 5
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值