随笔分类 -  css

摘要:不可继承的:baidisplay、dumargin、border、padding、background、height、min-height、max- height、width、min-width、max-width、overflow、position、left、right、top、 bottom、f 阅读全文
posted @ 2021-08-15 11:06 终末s 阅读(269) 评论(0) 推荐(0)
摘要:transform-origin: 改变元素中心点位置2Dtransform:translate(200px(向右移),200px(向下移)) 相对于自身平移(如果是50%则是相对于自身大小平移自身长度50%的量) rotate(180deg) 顺时针旋转 scale(0.5(宽),2(高)) 缩小 阅读全文
posted @ 2021-03-24 16:39 终末s 阅读(44) 评论(0) 推荐(0)
摘要:定义变量--xxx:属性值(任意) 使用:root{ 写在root内则为全局变量 --a:red} body{ background:var(--a,#eee(如果变量未赋值则使用基础值)); }响应式布局 /* 小于768的设备 */ @media (max-width:768px) { body 阅读全文
posted @ 2021-03-24 16:25 终末s 阅读(66) 评论(0) 推荐(0)