부르마 소개
그것은 배우기 매우 쉽고 공식 사이트에 시작하기 위한 많은 템플릿이 있습니다. Bulma는 또한 모듈식이므로 사용자가 .sass 파일을 가져와서 버튼 스타일이나 열과 같은 일부를 사용할 수 있습니다. 또한 프론트엔드 레이아웃에 필요할 수 있는 모든 구성 요소를 포함하고 있으며 대부분의 웹 브라우저와도 호환됩니다.
설치
npm install bulma
또한 HTML5 문서 유형을 사용하여 Bulma가 올바르게 작동하도록 웹 페이지를 반응형으로 만들어야 합니다.
<!DOCTYPE html>
또는 반응형 뷰포트 메타 태그를 추가합니다.
<meta name="viewport" content="width=device-width, initial-scale=1">
빠른 가이드
공식 사이트의 HTML 시작 템플릿:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title">
Hello World
</h1>
<p class="subtitle">
My first website with <strong>Bulma</strong>!
</p>
</div>
</section>
</body>
</html>
<button class="button">
Button
</button>
<button class="button is-primary">
Primary button
</button>
공식 사이트의 문서에서 볼 수 있는 색상, 카드, 컨테이너, 드롭다운 등과 같은 더 많은 구성 요소가 있습니다. 또한 React, Vue 및 기타 프레임워크를 위한 Bulma 라이브러리가 있습니다.
참고문헌
Reference
이 문제에 관하여(부르마 소개), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/gorgutzz/intro-to-bulma-4235텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)