Elements with css font-size <12px doesn\'t have effect in Google Chrome - remains font-size 12px.
What should I do?
My Google Chrome browser uses default
-webkit-text-size-adjust is no longer working after Chrome 27.
-webkit-text-size-adjust
Try using transform to refuce font-size forcely.
transform
font-size:12px; transform: scale(0.833);/*10/12=0.833, font-size:10px*/