摘要: #CSS定位属性-设置元素在页面中的位置 position属性-static/relative/absolute/fixed 定位设置-top/bottom/left/right,偏移量可以为负值 层级:z-index,只有position值为absolute才有效 #相对定位:元素相对于标准文档流 阅读全文
posted @ 2020-07-04 22:42 kylingx 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 在Kubernetes系统中,Pod的管理对象RC、Deployment、DaemonSet和Job都面向无状态的服务。 但现实中有很多服务是有状态的,特别是一些复杂的中间件集群,例如MySQL集群、MongoDB集群、Akka集群、ZooKeeper集群等,这些应用集群有4个共同点。 (1)每个节 阅读全文
posted @ 2020-07-04 21:13 kylingx 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #CSS浮动:元素脱离文档流向左或向右布局 float属性-none/left/right 设置浮动后-元素当作块级元素处理、脱离标准流,造成父元素内容塌陷 #清除浮动 解决父元素内容塌陷,影响布局效果 clear属性-none/left/right/both overflow属性-用于设置元素不够 阅读全文
posted @ 2020-07-04 16:28 kylingx 阅读(99) 评论(0) 推荐(0) 编辑
摘要: #盒模型-Box Model,用来对HTML元素布局时使用 组成部分:元素内容content、内边距padding、边框border、外边距margin #内边距padding padding-top/right/bottom/left 简写属性padding #边框border border-st 阅读全文
posted @ 2020-07-04 16:16 kylingx 阅读(101) 评论(0) 推荐(0) 编辑
摘要: #mongo shell ./mongo show dbs use bus opid – 操作的opid,有需要的话,可以通过 db.killOp(opid) 杀死操作 #查看数据库当前正在执行的操作 db.currentOp() #查看该数据下的慢请求日志 use bus db.system.pr 阅读全文
posted @ 2020-07-04 14:12 kylingx 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1.字体 名称font-family 大小font-size 样式font-style 粗细font-weight 简写属性font (集合写法) 2.文本 颜色color 行高line-height 对齐方式text-align 方向direction 缩进text-indent 装饰线text- 阅读全文
posted @ 2020-07-04 13:12 kylingx 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 待完善 参考 https://www.cnblogs.com/duanxz/p/4919154.html https://zhuanlan.zhihu.com/p/154108247 阅读全文
posted @ 2020-07-04 08:58 kylingx 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 下面介绍在nginx中实现防盗链配置方法有对图片防盗链与下载资源 防盗链配置 假设网站域名是 www.php100.com。 编辑nginx.conf,在 www.php100.com 区域添加如下内容: location ~* .(gif|png|jpg|bmp|swf|flv)$ { valid 阅读全文
posted @ 2020-07-04 08:57 kylingx 阅读(186) 评论(0) 推荐(0) 编辑