第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何在Material ui中對(duì)齊屏幕底部的項(xiàng)目

如何在Material ui中對(duì)齊屏幕底部的項(xiàng)目

瀟湘沐 2023-10-17 16:58:35
我正在嘗試在屏幕末尾對(duì)齊按鈕,這樣即使我滾動(dòng)背景列表,按鈕仍應(yīng)保留在屏幕底部。我嘗試過(guò)但無(wú)法弄清楚這一點(diǎn)。請(qǐng)任何人幫助我這樣做。這就是我的屏幕的樣子。現(xiàn)在,滾動(dòng)時(shí)它總是出現(xiàn)在屏幕中間。這是我的代碼<Link to={"/checkout-summary"}>          <div className="checkoutbtn">            <Button              style={{                boxShadow: "none",                borderRadius: "0px",                position: 'absolute',                bottom: 0              }}              variant="contained"              color="primary"            >              Check Out            </Button>          </div>        </Link>
查看完整描述

2 回答

?
幕布斯6054654

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超7個(gè)贊

將頁(yè)腳固定到底部


import { makeStyles } from '@material-ui/core/styles';


const useStyles = makeStyles(theme => ({

  footer: {

    position: 'fixed',

    bottom: 0,

    width: '100%',

    height: 60,

    textAlign: 'center'

  }

}));


const classes = useStyles();


<Link to={"/checkout-summary"} className={classes.footer}>


查看完整回答
反對(duì) 回復(fù) 2023-10-17
?
神不在的星期二

TA貢獻(xiàn)1963條經(jīng)驗(yàn) 獲得超6個(gè)贊

import { styled } from '@mui/system';

    

const MyMessageBox = styled('div')({

    position: 'fixed',

    bottom: 0,

    width: '100%',

    height: 60,

    textAlign: 'center',

});

      

<MyMessageBox>Contents inside this will be shown at the bottom of the page</MyMessageBox>



查看完整回答
反對(duì) 回復(fù) 2023-10-17
  • 2 回答
  • 0 關(guān)注
  • 121 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)