
Above image explains the problem very well.
Top screenshot is the one I took from the site and below screenshot is the one I took from my browser.
You've probably forgot to set doctype and such. I had the same problem until I came across this:
http://evileyegames.com/article/46-material-design-lite-mdl-fix-menu-icon-vertical-alignment
basically you need to make sure you have...
<!doctype html>
<html lang="en">
<head>
<!-- stuff -->
</head>
at the top of your html
thanks a lot...
that solved my problem. why didn't i thought of that ???
anyways thanks...
Most helpful comment
You've probably forgot to set doctype and such. I had the same problem until I came across this:
http://evileyegames.com/article/46-material-design-lite-mdl-fix-menu-icon-vertical-alignment
basically you need to make sure you have...
<!doctype html><html lang="en"><head><!-- stuff --></head>at the top of your html