Skip to content

Instantly share code, notes, and snippets.

@hulufei
Created September 27, 2013 02:39
Show Gist options
  • Select an option

  • Save hulufei/6723486 to your computer and use it in GitHub Desktop.

Select an option

Save hulufei/6723486 to your computer and use it in GitHub Desktop.
Review vertical-align
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Review vertical-align</title>
<style>
.icon-x { display: inline-block; width: 50px; height: 50px; vertical-align:middle; }
</style>
</head>
<body>
<p>
<i class="icon-x"></i>
some text
</p>
<p>
vertical-align不能被继承,只有两个以上行内元素(text也算)在一起设置才会有效
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment