naive-ui/demo/documentation/components/descriptions/enUS/bordered.md

55 lines
1.5 KiB
Markdown
Raw Normal View History

2019-11-12 15:04:42 +08:00
# Bordered
If there are too many multiple line fields, you can set it to borderd
```html
<n-descriptions bordered>
<n-descriptions-item>
<template v-slot:label>
Breakfast
</template>
Apple
</n-descriptions-item>
<n-descriptions-item label="Lunch">
Apple
</n-descriptions-item>
<n-descriptions-item label="Supper">
Apple
</n-descriptions-item>
<n-descriptions-item label="Why Long">
Why <br> Long <br> Long <br> Long <br> Long <br> Long
</n-descriptions-item>
<n-descriptions-item label="Why Long">
Why <br> Long <br> Long <br> Long <br> Long <br> Long
</n-descriptions-item>
<n-descriptions-item label="Why Long">
Why <br> Long <br> Long <br> Long <br> Long <br> Long
</n-descriptions-item>
</n-descriptions>
<n-descriptions label-placement="left" bordered>
<n-descriptions-item>
<template v-slot:label>
Breakfast
</template>
Apple
</n-descriptions-item>
<n-descriptions-item label="Lunch">
Apple
</n-descriptions-item>
<n-descriptions-item label="Supper">
Apple
</n-descriptions-item>
<n-descriptions-item label="Why Long">
Why <br> Long <br> Long <br> Long <br> Long <br> Long
</n-descriptions-item>
<n-descriptions-item label="Why Long">
Why <br> Long <br> Long <br> Long <br> Long <br> Long
</n-descriptions-item>
<n-descriptions-item label="Why Long">
Why <br> Long <br> Long <br> Long <br> Long <br> Long
</n-descriptions-item>
</n-descriptions>
```
```css
.n-descriptions {
margin-top: 16px;
}
```