4
To remove edges in CSS I usually use one of the two values:
.exemplo{
border:0;
/* ou */
border:none;
}
The funny thing is that they both work, and it happens with other properties like outline
, but which of the two properties would be the correct to be used in this case? Or rather, there is a "correct" (semantically speaking) or it makes no difference?