如何使用 CSS 通过单一属性设置线条颜色、样式和宽度?
边框 属性允许你在一个属性中指定线条的颜色、样式和宽度。
示例
你可以尝试运行以下代码来指定边框属性
<html> <head> </head> <body> <p style = "border:3px solid green;"> This example is showing shorthand property for border. </p> </body> </html>
广告
边框 属性允许你在一个属性中指定线条的颜色、样式和宽度。
你可以尝试运行以下代码来指定边框属性
<html> <head> </head> <body> <p style = "border:3px solid green;"> This example is showing shorthand property for border. </p> </body> </html>