Last active
August 29, 2015 14:18
-
-
Save jebai0521/6c40cb84133291934019 to your computer and use it in GitHub Desktop.
html 图片居中
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
align="center"使用方法: | |
<div align="center"></div> | |
<!DOCTYPE > | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta name="viewport" content="width=device-width"/> | |
<meta charset="utf-8" /> | |
<style type="text/css"> | |
body { | |
margin: 0 !important; | |
padding: 0 !important; | |
} | |
</style> | |
<title>图片横向居中</title> | |
</head> | |
<body> | |
<div align="center"><img src="http://www.divcss5.com/img201305/divcss5-logo-201305.gif" /></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment