0
shorthand property
when using shorthand property how to add. border(trbl) values or others options
1 ответ
0
You can use this shorthand method:
selector
{
attribute : value:"weight of border" , value:" type of border" ,value:" color of the border";
}
Ex.
body
{
/*Add black solid border with weight of 1px */
border : 1px solid black;
}