import React from 'react';
import { Container, Row, Col } from 'react-bootstrap';
function MyComponent() {
return (
<Container>
<Row>
<Col md={9}>이 공간은 전체 너비의 75%를 차지합니다.</Col>
<Col md={3}>이 공간은 전체 너비의 25%를 차지합니다.</Col>
</Row>
</Container>
);
}
export default MyComponent;
import React from 'react';
import Grid from '@mui/material/Grid';
import Paper from '@mui/material/Paper';
function MyComponent() {
return (
<Grid container spacing={2}>
<Grid item xs={9}>
<Paper style={{ height: '100%', background: '#f0f0f0' }}>
{/* 여기에 9의 비율로 표시할 컨텐츠를 넣습니다. */}
9의 비율 영역
</Paper>
</Grid>
<Grid item xs={3}>
<Paper style={{ height: '100%', background: '#d0d0d0' }}>
{/* 여기에 3의 비율로 표시할 컨텐츠를 넣습니다. */}
3의 비율 영역
</Paper>
</Grid>
</Grid>
);
}
export default MyComponent;
이 카테고리의 목록 | 총 165개의 게시물 |
개발 플랫폼 | 2025. 1. 4. |
자동화는 아직이다 | 2024. 12. 17. |
에이스캘린더 프로세스 | 2024. 12. 10. |
신성기사 SimC APL | 2024. 12. 1. |
朋友 [금영 노래방 13283번] | 2024. 11. 7. |
돌고 돌아 제자리로 | 2024. 11. 5. |
캘린더 공유 | 2024. 11. 4. |
열관류율과 열통과저항 | 2024. 10. 31. |
와우 규칙 | 2024. 10. 30. |
가장 경계해야 할 것은 술이다 | 2024. 10. 30. |