Is it possible to achieve CSS border-radius on really small objects in Chrome Canary?
This experiment with a 3px high line and a 2px border radius, when zoomed in at 600%, doesn't show much difference:
It works perfectly fine in regular Google Chrome, Firefox, etc.
div {
height: 3px;
width: 30px;
background-color: blue;
position: absolute;
top: 15px;
left: 15px;
border-radius: 15px;
}
<div></div>