๐Ÿ’ป Information/Computer

[ํ‹ฐ์Šคํ† ๋ฆฌ] div ์ขŒ์šฐ๋กœ ๋‚˜๋ž€ํžˆ ์ •๋ ฌ

GigaWatt 2015. 5. 30. 18:08
๋ฐ˜์‘ํ˜•

div๋ฅผ ๋‚˜๋ž€ํžˆ ๋งŒ๋“œ๋Š” ์†Œ์Šค

1. ๋‚˜๋ž€ํžˆ ์ •๋ ฌ HTML

1
2
<div class="box1"></div>
<div class="box2"></div>


 

2. ๋‚˜๋ž€ํžˆ ์ •๋ ฌ CSS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
.box1 {
    float: left;
    width: 200px;
    height: 100px;
    background-color: red;
}
.box2 {
    display: inline-block;
    width: 200px;
    height: 100px;
    margin-left: 10px;
    background-color: blue;
}


3. ์ฝ”๋“œ ์ ์šฉ ๊ฒฐ๊ณผ



๋ฐ˜์‘ํ˜•