相对定位与绝对定位的练习 .father{ width:600px; height:400px; background:#F63; margin:50px auto; position:relative; } .box1,.box2,.box3,.box4{ width:80px; height:6 ...
分类:
Web程序 时间:
2020-12-04 11:47:25
阅读次数:
23
一、 优先队列的概述 在前面的数据结构(三):线性表-栈,队列中记录到,队列是先进先出的结构,元素在队列末端添加,在队列前头删除,若使用该队列的数据结构,则当要找出队列中的最大最小值时,需要遍历队列 对每个元素做比较后得出,这样在实际的生产应用中效率是很低的,这时就需要有一种队列,能快捷的获取队列中 ...
分类:
其他好文 时间:
2020-12-03 12:22:31
阅读次数:
5
将 auto.commit.offset 设为 false,然后在处理一批消息后 commitSync() 或者 异步提交 commitAsync() 即: ConsumerRecords<> records = consumer.poll(); for (ConsumerRecord<> reco ...
分类:
其他好文 时间:
2020-12-03 12:16:37
阅读次数:
6
tab栏模板 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Do ...
分类:
其他好文 时间:
2020-12-03 11:58:41
阅读次数:
5
你两种依赖方式都可以使用,构造器注入和Setter方法注入。最好的解决方案是用构造器参数实现强制依赖,setter方法实现可选依赖。 ...
分类:
其他好文 时间:
2020-12-03 11:29:20
阅读次数:
3
html 代码 <div class="data_bodey"> <div class="index_nav" > <ul style="height: 30px; margin-bottom: 0px;"> <li class="l_left total_chose_fr nav_active"> ...
分类:
Web程序 时间:
2020-11-27 11:40:13
阅读次数:
14
代码如下: <style> *{ margin: 0; padding: 0; } html,body{ width: 100%; height: 100%; } body{ background:#1e1e1f; overflow:hidden; } .box{ width: 100%; heig ...
分类:
其他好文 时间:
2020-11-27 10:58:16
阅读次数:
6
盒子的六个属性:1·width属性 2.height属性 3.内边距(padding)4.边距(border)5.外边距(margin)6.背景属性(background) 垂直居中的条件:单行文字垂直居中,行高等于高度值 当行高小于高度,文字偏上;当行高大于高度,文字偏下。 盒模型的宽度=左外边距 ...
分类:
其他好文 时间:
2020-11-26 14:08:53
阅读次数:
5
BFC问题: 概念:页面渲染规则 出发条件: overflow:hidden 规则: 浮动参与高度计算 清除浮动 BFC不会和浮动发生重叠 自适应两栏布局 子元素不会影响外部元素 margin-top传递问题(父元素上加:overflow:hidden 、padding-top 、 border-t ...
分类:
其他好文 时间:
2020-11-24 12:45:01
阅读次数:
7
使用 man 获取帮助信息 1. 基本语法 man [命令或配置文件] 2. 案例实操 (1)查看ls命令的帮助信息man ls 3. 显示说明 信息 功能 NAME 命令的名称和单行描述 SYNOPSIS 怎样使用命令 DESCRIPTION 命令功能的深入讨论 EXAMPLES 怎样使用命令的例 ...
分类:
系统相关 时间:
2020-11-21 12:05:49
阅读次数:
45