Created
February 14, 2011 05:10
-
-
Save kolber/825514 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>expanding image</title> | |
<style> | |
.wrapper { margin: 0px auto; padding: 0px 320px; *width: 920px; max-width: 920px; border: 3px solid red; } | |
.wrapper img { width: 100%; -ms-interpolation-mode: bicubic; } | |
</style> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<img src="image.jpg" alt=""> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment