二维码

CSS Outline - Shorthand 属性

CSS Outline - Shorthand 属性

CSS Outline - Shorthand 属性

outline:该属性设置如下:

  • outline-width
  • outline-style(必填)
  • outline-color

下面的示例显示了使用 shorthand 属性指定的一些轮廓:outline

1
2
3
4
p.ex1 {outline: dashed;}  
p.ex2 {outline: dotted red;}
p.ex3 {outline: 5px solid yellow;}
p.ex4 {outline: thick ridge pink;}