如何在材料UI中对齐水平图标和文本

时间:2018-08-21 00:41:21

标签: html css material-ui

我是用户界面的新手,现在我的图标和文本未对齐:

not align

我想要的结果:

我的代码是:

<div style={{
    display: 'inline-flex',
    VerticalAlign: 'text-bottom',
    BoxSizing: 'inherit',
    textAlign: 'center',
    AlignItems: 'center'
}}>
    <LinkIcon className={classes.linkIcon}  />
    revolve
</div>  

这花了我两天时间,我什至尝试了网格和行,但没有用。谁能帮我吗?

9 个答案:

答案 0 :(得分:7)

您需要使用网格。 这样的事情应该起作用:

<Grid container direction="row" alignItems="center">
  <Grid item>
    <LinkIcon className={classes.linkIcon}  />
  </Grid>
  <Grid item>
    revolve
  </Grid>
</Grid>

答案 1 :(得分:7)

替代简单解决方案

<Grid container direction="row" alignItems="center">
     <SearchIcon /> example
</Grid>

答案 2 :(得分:3)

您可以在顶部导入这些

import { Grid, Typography } from "@material-ui/core";
import LinkIcon from "@material-ui/icons/Link";

你可以使用

<Grid style={{ display: "flex" }}>
    <LinkIcon />
    <Typography>Revolve</Typography>
</Grid>

沙盒示例Here

答案 3 :(得分:2)

样式

const styles = theme => ({
    icon: {
        position: "relative",
        top: theme.spacing.unit,
        width: theme.typography.display1.fontSize,
        height: theme.typography.display1.fontSize
    }
});

JSX

<Typography variant="display1">
    <Icon className={this.props.classes.icon}/>Your&nbsp;Text
</Typography>

您可以在所有3个地方将display1替换为display3或另一个typography variant,以选择文字大小。 &nbsp;确保文本在换行时不会在单词之间折断。

对我来说,它可以呈现为这样

enter image description here

添加了display3和其他一些颜色样式。

答案 4 :(得分:2)

这应该可以得到预期的结果。...

<div style={{
    display: 'flex',
    alignItems: 'center'
}}>
    <LinkIcon />
    <p>revolve</p>
</div>  

答案 5 :(得分:2)

您还可以使用Material UI的Flexbox component

例如:

// ...
import { Box } from '@material-ui/core';
// ...

<Box alignItems="center" display="flex">
 <Box>
    <LinkIcon className={classes.linkIcon}  />
 </Box>
 <Box>
    revolve
 </Box>
</Box>

alignItems: center属性将使内部项目垂直对齐。

这将添加一些其他标记。但是,如果您查看组件的API,则会有很多额外的灵活性。如 例如use margin or padding的方法与您的Material UI实现的其余部分一致。如果用例出现,也很容易以不同的方式对齐项目。

答案 6 :(得分:0)

尝试以下代码。您可以根据需要使用variant

const useStyles = makeStyles(theme => ({
  wrapIcon: {
    verticalAlign: 'middle',
    display: 'inline-flex'
   }
}));

<Typography variant="subtitle1" className={classes.wrapIcon}>
    <LinkIcon className={classes.linkIcon}  /> revolve
</Typography>

答案 7 :(得分:0)

    import ListItem from '@material-ui/core/ListItem';
    import ListItemIcon from '@material-ui/core/ListItemIcon';
    import ListItemText from '@material-ui/core/ListItemText';

    <ListItem >
         <ListItemIcon><AccessAlarmIcon color="secondary" /></ListItemIcon>
         <ListItemText primary="Updated 1 hour ago" />
   </ListItem>

[演示图片]

答案 8 :(得分:0)

这里有同样的问题,这就是我所做的。

import LinkIcon from '@material-ui/icons/Link';
import styled from 'styled-components';
...
const Resolve = styled.div`
  display: flex;
  vertical-align: middle,
`;

<Resolve>
  <LinkIcon style={{ marginRight: '5px' }} />
  <p>resolve</p>
</Resolve>

如果您对mUI默认链接图标不满意,可以随时进行DIY:

{/* this is the same chained icon used in the own material-ui, 
idk why this ins't avaiable yet */}

function CustomLinkIcon(props) {
  return (
    <SvgIcon {...props}>
      <path d="M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z" />
    </SvgIcon>
  );
}
...
<Resolve>
  <CustomLinkIcon 
     {/* adjust margin top if needed */}
     style={{ marginRight: '3px', marginTop: '3px' }} {
  />
  <p>resolve</p>
</Resolve>