css
良言SE
编程: web 开发,java 开发,bi 任务调度
html+css
js
java,mybatis,springBoot
sql,oracle,mysql
展开
-
前端三剑客
html–结构 css–样式 js–行为 标签tag html 标准文档 html doctype 标签 html root 标签 html head 标签 html head title 标签 html head meta 标签 html head meta 标签 html body 标签 html body style 标签 html body script 标签 div[style=""] 内联样式 head>style 内部样式 head>link[ href="" rel=“st原创 2020-06-03 17:35:18 · 325 阅读 · 0 评论 -
css transition
css transition 可以让web前端开发人员不需要javascript就可以实现简单的动画交互效果 过渡transition的这四个子属性只有<transition-duration>是必需值且不能为0 不是所有的CSS样式值都可以过渡,只有具有中间值的属性才具备过渡效果 语法 transition transition-property 属性 tr...原创 2020-01-13 11:18:05 · 277 阅读 · 0 评论 -
css 文档流 溢出处理 透明度 层叠处理
文档流 浮动元素会生成一个块级框 浮动框不在普通文档流中 css overflow overflow:hidden; overflow:auto; overflow:scroll; overflow-x overflow-y css 透明度 background-color: rgba(0,0,255,0.5); opacity:0.5; transi...原创 2020-01-13 10:35:17 · 283 阅读 · 0 评论 -
css 浮动和定位
css标准文档流 从头到尾按照文档的顺序,该在什么位置就在什么位置,自上而下,自左到右的渲染顺序 浮动和定位就是会影响普通流而存在 css 浮动 float:left; float:right; float:none; css 清除浮动 clear:inherit; /*继承父元素*/ clear:none; /*默认允许浮动*/ clear:both; ...原创 2020-01-13 10:31:07 · 108 阅读 · 0 评论 -
css 基础 盒模型
盒模型 width height border border:1px solid #f00; border-top border-bottom border-left border-right margin margin: 20px 0px 0px; margin-top margin-bottom margin-left margin-right ...原创 2020-01-13 10:11:54 · 140 阅读 · 0 评论 -
css 权重计算理论
1.理论 !important>行间样式>id>class|属性>标签选择器>通配符 infinity 1000 100 10 1 0 255 进制 嵌套相加 1+x 嵌套相加 100+x ps 渡一教育,姬成老师的免费公开课 关于css权重值的一个进制,是由一位国外工程师用ie,经过详细测试得到的; 2.实践 el-header{ .e...原创 2019-12-02 10:52:38 · 140 阅读 · 0 评论