I have two images centered with body{text-align:center}, and their style max-width:100%.
I'm trying to keep the images in the center of the page, but I want them to scale as I resize the browser window (staying centered). As I resize the browser, the second image flips underneath the first one and they start scaling just afterwards.. they don't stay centered.
what am I doing wrong?
HTML
<body>
<img src="emoticons-20110801-213224.png" />
<img src="emoticons-20110801-213224.png" />
</body>
css
img {
max-width: 100%;
}
body {
margin: 0;
padding: 0;
text-align: center;
}