This question already has an answer here:
- Webkit-based blurry/distorted text post-animation via translate3d 16 answers
I want to center my div
and I use this method, but it makes my texts inside the div
blurry:
<!-- language: lang-css -->
#div {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
is there any way to center my div
?