FlowerBombs

float.html 본문

Javascript & JQuery&Ajax/bootstrap

float.html

CitronLemon 2019. 2. 22. 10:04

float


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
<!DOCTYPE html>
<!-- 
    06-float1.html
    float 속성 처리하기
-->
<!-- 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>
        .parent {
            border: 5px solid #3071A9;
            padding: 10px;
            background-color: #ccc;
        }
        .child {
            width: 200px;
            height: 200px;
            border: 5px solid #DA4D1B;
            padding: 10px;
            background-color: #eee;
        }
    </style>
</head>
<body>
    <div class="container">
        <!-- 중첩 박스 -->
        <div class="parent clearfix">
            <div class="child pull-left">
            </div>
 
            Twitter Bootstrap Float Example
        </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
gird2  (0) 2019.02.22
grid.html  (0) 2019.02.22
image.html  (0) 2019.02.21
Comments