css 属性 inset
- 1,介绍
- 2,浏览器兼容性
1,介绍
inset mdn
是一个简写属性,对应于 top
、right
、bottom
和 left
属性。具体可以看上面的 mdn 介绍
inset: 0; /* top right bottom bottm 都是 0 */
其他例子
/* 长度值 */
inset: 10px; /* 应用于所有边 */
inset: 4px 8px; /* 上下 | 左右 */
inset: 5px 15px 10px; /* 上 | 左右 | 下 */
inset: 2.4em 3em 3em 3em; /* 上 | 右 | 下 | 左 */
2,浏览器兼容性
可以看到基本2020年,2021年之后的浏览器版本都已经支持了。兼容性还算不错。
完整版:
以上。