html居中显示的代码
时间: 2023-08-10 19:03:14 浏览: 70
window.open打开页面居中显示的示例代码
可以使用以下CSS代码将HTML元素水平和垂直居中显示:
```css
.center {
display: flex;
justify-content: center;
align-items: center;
}
```
然后在HTML元素中添加class="center"即可。
阅读全文
window.open打开页面居中显示的示例代码