markdown Bootstrap - 中心图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Bootstrap - 中心图像相关的知识,希望对你有一定的参考价值。

# Bootstrap - Center Image or Div

[SOURCE](https://getbootstrap.com/docs/4.0/utilities/flex/), [SOURCE](https://getbootstrap.com/docs/4.1/content/images/#aligning-images),
[SOURCE](https://www.w3.org/Style/Examples/007/center.en.html)

## 1. How to Center Image/Div in Div:
```html
<div class="container">
	<img src="..." height="20">
</div>
```

*CSS* way:

```css
.container {
  display: flex;
  justify-content: center; //center horizontally
  align-items: center; //center vertically

	...
	height: 70px;
	padding: 10px 20px;

}
```

*Bootstrap* way:

```html
<div class="container d-flex justify-content-center align-items-center">
	<img src="..." height="20">
</div>
```

## 2. How to Center Image in Div Horizontally Only:
```html
<div class="container">
	<img src="..." height="20">
</div>
```

Use method 1 without `align-items: center;` option or:

*CSS* way:
```css
.container {
  img {
    display: block;
    margin-left: auto;
    margin-right: auto;
	}
}
```

*Bootstrap* way:
```html
<div class="container">
	<img class="d-block mx-auto" src="..." height="20">
</div>
```

以上是关于markdown Bootstrap - 中心图像的主要内容,如果未能解决你的问题,请参考以下文章

Bootstrap 3中水平对齐缩略图到中心

Bootstrap Blazor 实战 Markdown 编辑器使用

markdown Bootstrap4模板

markdown Bootstrap折叠

markdown Bootstrap工具提示技巧

markdown 使用Bootstrap样式验证角度反应形式