TableCell API
导入
import TableCell from '@mui/material/TableCell';
// 或
import { TableCell } from '@mui/material';
The component renders a <th>
element when the parent context is a header
or otherwise a <td>
element.
组件名称
在主题中,名称“MuiTableCell
”可用于提供默认属性(props),或者样式覆盖属性
原生(Native) 组件的属性也是可用的。
名称 | 类型 | 默认值 | 描述 |
---|---|---|---|
align | 'center' | 'inherit' | 'justify' | 'left' | 'right' | 'inherit' | Set the text-align on the table cell content. Monetary or generally number fields should be right aligned as that allows you to add them up quickly in your head without having to worry about decimals. |
children | node | The content of the component. | |
classes | object | Override or extend the styles applied to the component. See CSS API below for more details. | |
component | elementType | The component used for the root node. Either a string to use a HTML element or a component. | |
padding | 'checkbox' | 'none' | 'normal' | Sets the padding applied to the cell. The prop defaults to the value ( 'default' ) inherited from the parent Table component. | |
scope | string | Set scope attribute. | |
size | 'medium' | 'small' | string | Specify the size of the cell. The prop defaults to the value ( 'medium' ) inherited from the parent Table component. | |
sortDirection | 'asc' | 'desc' | false | Set aria-sort direction. | |
sx | Array<func | object | bool> | func | object | The system prop that allows defining system overrides as well as additional CSS styles. See the `sx` page for more details. | |
variant | 'body' | 'footer' | 'head' | string | Specify the cell type. The prop defaults to the value inherited from the parent TableHead, TableBody, or TableFooter components. |
ref
则会被传递到根元素中。CSS
规则名称 | 全局类名 | 描述 |
---|---|---|
root | .MuiTableCell-root | Styles applied to the root element. |
head | .MuiTableCell-head | Styles applied to the root element if variant="head" or context.table.head . |
body | .MuiTableCell-body | Styles applied to the root element if variant="body" or context.table.body . |
footer | .MuiTableCell-footer | Styles applied to the root element if variant="footer" or context.table.footer . |
sizeSmall | .MuiTableCell-sizeSmall | Styles applied to the root element if size="small" . |
sizeMedium | .MuiTableCell-sizeMedium | Styles applied to the root element if size="medium" . |
paddingCheckbox | .MuiTableCell-paddingCheckbox | Styles applied to the root element if padding="checkbox" . |
paddingNone | .MuiTableCell-paddingNone | Styles applied to the root element if padding="none" . |
alignLeft | .MuiTableCell-alignLeft | Styles applied to the root element if align="left" . |
alignCenter | .MuiTableCell-alignCenter | Styles applied to the root element if align="center" . |
alignRight | .MuiTableCell-alignRight | Styles applied to the root element if align="right" . |
alignJustify | .MuiTableCell-alignJustify | Styles applied to the root element if align="justify" . |
stickyHeader | .MuiTableCell-stickyHeader | Styles applied to the root element if context.table.stickyHeader={true} . |
您可以使用组件自定义选项对组件进行个性化:
- 具备 全局类名.
- 在自定义主体中,设定一个规则名称作为组件的
styleOverrides
属性的一部分。