📌  相关文章
📜  声明顶部、右侧、底部、左侧位置的简写符号 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:30.699000             🧑  作者: Mango

代码示例1
.element {
  inset: 1em 2em 3em 0; /* top right bottom left */
  inset: 10% 5% -10%;   /* top left/right bottom */
  inset: 0 10px;        /* top/bottom left/right */
  inset: 20px;          /* all edges = 20px */
}