css
文章平均质量分 58
多一点开心
这个作者很懒,什么都没留下…
展开
-
盒子模型相关
盒子模型一、标准盒子模型(W3C盒子模型)一、IE盒子模型(怪异盒子模型)三、切换指定的盒子模型 一、标准盒子模型(W3C盒子模型) 设置的宽度width = content的宽度 设置的高度height= content的高度 一、IE盒子模型(怪异盒子模型) 设置的宽度width = content的宽度 + padding的宽度 + border的宽度 设置的高度height = content的高度+ padding的高度+ border的高度 三、切换指定的盒子模型 借助box-sizing属性原创 2021-05-19 14:57:22 · 267 阅读 · 0 评论 -
元旦-CSS蒙层
一、好久不见 最近有点小忙哟,元旦还在加班 二、添加蒙层原创 2021-01-01 15:53:08 · 158 阅读 · 0 评论 -
css-文字超出省略显示
一、实现效果 二、代码 文本不换行: white-space: nowrap; 超出隐藏: overflow: hidden; 超出的文字用省略号代替: text-overflow: ellipsis; .smallname { text-align: center; color: #fff; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; width: 100%; } ...原创 2020-08-21 16:10:07 · 294 阅读 · 0 评论 -
三栏布局了解一下
CSS-三栏布局一、float二、position三、圣杯四、双飞翼五、table六、flex七、grid 三栏布局了解一下:布局分为左中右三栏,其中左右两栏宽度固定,中间栏宽度自适应 一、float <html> <head> <meta charset="utf-8" /> <title></title> <style> .A { color: #fff; }原创 2020-07-31 09:18:27 · 227 阅读 · 0 评论