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