본문 바로가기
Web/React

React에 Bulma CSS 적용하기

by 고체물리학 2022. 3. 11.

1. Terminal 창에서 bulma CSS설치

npm install bulma

 

2. CSS 적용

index.js에서 import한다

import 'bulma/css/bulma.css';

 

Footer을  추가해본다

<footer className="footer">
<div className="content has-text-centered">
    <p>
    <strong>Web</strong> by <a href="https://jgthms.com">도톨이표코딩</a>. The source code is licensed
    <a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content
    is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
    </p>
</div>
</footer>

 

[결과]

반응형

댓글