7
kevin7
8y

You know you have been coding with CSS Preprocessor for far too long when you typed this in regular stylesheet and wondering why it doesn't work...

#container {
.wrapper {
text-align: center;
}
}

Why the font doesn't align to center!!! @&$#+%*^

Comments
  • 0
    it must be an IE issue, try this hack:

    * {
    text-align: center !important;
    }

    ;)
  • 1
    question is... why are you going back to coding without preprocessor?
Add Comment