会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Dena.chen
博客园
首页
新随笔
联系
管理
订阅
2022年8月23日
CSS
摘要: 1、css伪类参考地址:https://www.runoob.com/css/css-pseudo-classes.html 2、定位 相对定位:position:relative; top/bottom left/rright 文档位置不会被别的文件占据 绝对定位:position:absolut
阅读全文
posted @ 2022-08-23 15:50 Dena.chen
阅读(56)
评论(0)
推荐(0)
2019年11月26日
flex弹性盒子
摘要: 盒子模型 box-sizing: content-box 平时普通盒子模型 :padding、border 盒子会变大 (向外扩展) border-box 盒子模型 :padding、border 盒子不会变大 (向内扩展) calc(公式) 注意: + - * / 属性兼容查询 https://w
阅读全文
posted @ 2019-11-26 14:33 Dena.chen
阅读(134)
评论(0)
推荐(0)
2019年11月22日
正则表达式
摘要: 一、原子 1、所有看的见的看不见的字符都是原子 abcd121212\n \r*&&45 2、表示所有数字的字符 \d 【0-9任意一个字符】 3、表示所有非数字的字符 \D 【除0-9任意一个字符】 4、表示所有能够当作变量使用的原子 \w 【0-9a-zA-Z任意一个字符和下划线】 5、表示所有
阅读全文
posted @ 2019-11-22 09:54 Dena.chen
阅读(144)
评论(0)
推荐(0)
2019年11月21日
div垂直居中的4种方式方式
摘要: 一、使用单元格居中 <!DOCTYPE html> <html> <head> <title>测试</title> </head> <style type="text/css"> /* 使用单元格居中 */ .out { width: 400px; height: 400px; background
阅读全文
posted @ 2019-11-21 14:12 Dena.chen
阅读(1627)
评论(0)
推荐(0)
公告