주 메뉴 열기

wwiki β

바뀜

Bootstrap

590 바이트 추가됨, 2023년 11월 29일 (수) 23:59
Breakpoints
https://getbootstrap.kr/docs/5.2/, https://getbootstrap.kr/docs/5.3/
https://getbootstrap.com/docs/5.2, https://getbootstrap.com/docs/5.3
== Getting started ==
=== Introduction ===
 
# 모바일에서의 proper responsive behavior(적절한 반응형 동작)을 위해 <code><meta name="viewport"></code>를 넣어주세요.
<syntaxhighlight lang="html">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
</syntaxhighlight>
==== Important globals ====
=== Breakpoints ===
Breakpoints are customizable widths that determine how your responsive layout behaves across device or viewport sizes in Bootstrap.
 
뷰포트나 장치의 크기에서 레이아웃이 적응할 수 있는 너비이다.
==== Core concepts ====
편집
2,431