Skip to content

Instantly share code, notes, and snippets.

@jebai0521
Last active August 29, 2015 14:18
Show Gist options
  • Save jebai0521/6c40cb84133291934019 to your computer and use it in GitHub Desktop.
Save jebai0521/6c40cb84133291934019 to your computer and use it in GitHub Desktop.
html 图片居中
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