center an element horizontally using the margin property - zilongxuan001/LearnFreecode GitHub Wiki

使用margin属性把元素水平居中

理解

另一个技巧就是把块元素水平居中。一个方法就是设置它的marginauto

这个方法也可以用于图片(images)。图片默认是行内元素,但是当你给块元素设置display属性时,它能变为块元素。

练习

将网页中的div增加一个margin属性,设置值为auto

<style>
  div {
    background-color: blue;
    height: 100px;
    width: 100px;
    margin: auto;
  }
</style>
<div></div>

来源

Applied Visual Design: Center an Element Horizontally Using the margin Property | Learn freeCodeCamp

CHANGELOG

2018-10-25 10:10:21

⚠️ **GitHub.com Fallback** ⚠️