FlowerBombs

gird2 본문

Javascript & JQuery&Ajax/bootstrap

gird2

CitronLemon 2019. 2. 22. 10:57

네모 박스 



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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<!-- 
    08-gird2.html

-->
<!-- 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;
        }
        a {
            color: #222;
        }
        a:hover {
            text-decoration: none;
            color: #222;
        }
    </style>
</head>
 
<body>
    <div class="container">
        <div class="page-header">
            <h2>Bootstrap Gallery</h2>
        </div>
 
        <div class="row">
            <div class="col-md-3 col-sm-6 col-xs-12">
                <a href="#" class="thumnail">
                    <img src="https://via.placeholder.com/640x480" class="img-responsive"/>
                    <h4>제목</h4>
                    <p>이 부분은 컨텐츠에 대한 내용이 들어가는 영역 입니다.</p>
                    <p class='text-right text-muted'><small>작성자이름 / yyyy-mm-dd</small></p>
                </a>
            </div>
            <div class="col-md-3 col-sm-6 col-xs-12">
                    <a href="#" class="thumnail
                    ">
                        <img src="https://via.placeholder.com/640x480" class="img-responsive"/>
                        <h4>제목</h4>
                        <p>이 부분은 컨텐츠에 대한 내용이 들어가는 영역 입니다.</p>
                        <p class='text-right text-muted'><small>작성자이름 / yyyy-mm-dd</small></p>
                    </a>
                </div>
            <div class="col-md-3 col-sm-6 col-xs-12">
                <a href="#" class="thumnail">
                    <img src="https://via.placeholder.com/640x480" class="img-responsive"/>
                    <h4>제목</h4>
                    <p>이 부분은 컨텐츠에 대한 내용이 들어가는 영역 입니다.</p>
                    <p class='text-right text-muted'><small>작성자이름 / yyyy-mm-dd</small></p>
                </a>
            </div>
            <div class="col-md-3 col-sm-6 col-xs-12">
                <a href="#" class="thumnail">
                    <img src="https://via.placeholder.com/640x480" class="img-responsive"/>
                    <h4>제목</h4>
                    <p>이 부분은 컨텐츠에 대한 내용이 들어가는 영역 입니다.</p>
                    <p class='text-right text-muted'><small>작성자이름 / yyyy-mm-dd</small></p>
                </a>
            </div>
            <div class="col-md-3 col-sm-6 col-xs-12">
                <a href="#" class="thumnail">
                    <img src="https://via.placeholder.com/640x480" class="img-responsive"/>
                    <h4>제목</h4>
                    <p>이 부분은 컨텐츠에 대한 내용이 들어가는 영역 입니다.</p>
                    <p class='text-right text-muted'><small>작성자이름 / yyyy-mm-dd</small></p>
                </a>
            </div>
            <div class="col-md-3 col-sm-6 col-xs-12">
                <a href="#" class="thumnail">
                    <img src="https://via.placeholder.com/640x480" class="img-responsive"/>
                    <h4>제목</h4>
                    <p>이 부분은 컨텐츠에 대한 내용이 들어가는 영역 입니다.</p>
                    <p class='text-right text-muted'><small>작성자이름 / yyyy-mm-dd</small></p>
                </a>
            </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' 카테고리의 다른 글

grid5.html  (0) 2019.02.22
inner grid 3  (0) 2019.02.22
grid.html  (0) 2019.02.22
float.html  (0) 2019.02.22
image.html  (0) 2019.02.21
Comments