FlowerBombs

grid5.html 본문

Javascript & JQuery&Ajax/bootstrap

grid5.html

CitronLemon 2019. 2. 22. 12:00

xcvdsf


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<!-- 
    07-grid1.html
    grid 속성 처리하기
-->
<!-- bootstrap 기본틀 -->
<html lang="ko">
<head>
    <meta charset="UTF-8">
 
    <!-- IE 호환성보기 금지 코드 넣기 -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
 
    <!-- m.naver.com에서 가져오기-->
    <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
 
    <title>Hello Bootstrap</title>
 
    <!-- https://getbootstrap.com/docs/3.4/getting-started/ Bootsstrap CDN에서 가져오기 -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" />
    <style>
       
        .item {
            border: 5px solid #3071A9;
            padding: 10px;
            background-color: #ccc;
        }
    </style>
</head>
 
<body>
    <div class="container">
        <div class="page-header">
            <h2>4:8</h2>
        </div>
        <div class="row">
            <div class="col-md-4 col-md-push-8">
                <div class="item">메뉴영역</div>
            </div>
            <div class="col-md-8 col-md-pull-4">
                <div class="item">컨텐츠 영역</div>
            </div>
        </div>
    </div>
 
    
    
 
    <script src="../plugins/ajax-form/jquery.form.min.js"></script>
 
    <!-- https://getbootstrap.com/docs/3.4/getting-started/ Bootsstrap CDN에서 가져오기 -->
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</body>
</html>
 
cs





<결과물>



'Javascript & JQuery&Ajax > bootstrap' 카테고리의 다른 글

responsive_util.html  (0) 2019.02.22
grid6.html  (0) 2019.02.22
inner grid 3  (0) 2019.02.22
gird2  (0) 2019.02.22
grid.html  (0) 2019.02.22
Comments