css多元素水平居中效果程式碼例項

admin發表於2017-04-14

分享一段程式碼例項,它實現了多元素水平居中效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.content {
  text-align: center;
}
.item {
  display: inline-block;
  width: 150px;
  height: 45px;
  line-height: 45px;
  margin: 30px;
  text-align: center;
  border: 1px solid #666;
  border-radius: 10px;
}
</style>
</head>
<body>
  <div class="content">
    <div class="item">螞蟻部落一</div>
    <div class="item">螞蟻部落二</div>
  </div>
</body>
</html>

相關文章