Is it good to have CSS in <head> for mobiles site? because there will be not much css to write and maintain.
Like this http://www.emirplicanic.com/uploaded/tutorials/mobile/
<head>
<style type="text/css">
css here...........
</style>
</head>
It will save one HTTP request. We can keep one common header.php for site.
Or keeping css in <head> is still a bad idea on mobile websites?
<style>blocks belong in the<head>, but I think @metal-gear-solid was asking whether the whole stylesheet should be contained in the document's head, rather than referenced as an external resource. – David Thomas Sep 17 '10 at 19:40