If I set a border value to something like:
border : thin solid blue;
It will look perfect in all browsers except IE (No surprise there) where
'thin' borders are rendered 2 pixels wide. If I replace it with:
border : 1px solid blue;
It looks the same in all browsers. My question: Does one have advantages or
benefits over the other?
P.
border : thin solid blue;
It will look perfect in all browsers except IE (No surprise there) where
'thin' borders are rendered 2 pixels wide. If I replace it with:
border : 1px solid blue;
It looks the same in all browsers. My question: Does one have advantages or
benefits over the other?
P.
Comment