You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
654 B
26 lines
654 B
<docs>
|
|
---
|
|
order: 8
|
|
title:
|
|
zh-CN: 响应式布局
|
|
en-US: Responsive
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
参照 Bootstrap 的 [响应式设计](http://getbootstrap.com/css/#grid-media-queries),预设六个响应尺寸:`xs` `sm` `md` `lg` `xl` `xxl`。
|
|
|
|
## en-US
|
|
|
|
Referring to the Bootstrap [responsive design](http://getbootstrap.com/css/#grid-media-queries), here preset six dimensions: `xs` `sm` `md` `lg` `xl` `xxl`.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<a-row>
|
|
<a-col :xs="2" :sm="4" :md="6" :lg="8" :xl="10">Col</a-col>
|
|
<a-col :xs="20" :sm="16" :md="12" :lg="8" :xl="4">Col</a-col>
|
|
<a-col :xs="2" :sm="4" :md="6" :lg="8" :xl="10">Col</a-col>
|
|
</a-row>
|
|
</template>
|