๐Ÿ’ป Information/Computer

[ํ‹ฐ์Šคํ† ๋ฆฌ] ๋ฐ•์Šค ์•ˆ ๋ฐ•์Šค ์ค‘์•™์ •๋ ฌ

GigaWatt 2015. 11. 9. 12:34
๋ฐ˜์‘ํ˜•

div ์•ˆ div ์ค‘์•™ ์ •๋ ฌ


1. ๋ฐ•์Šค ์•ˆ ์ค‘์•™์ •๋ ฌ - HTML

1
2
3
4
5
6
7
<div class="out_box">
  
  <div class="in_box">
 
  </div>
    
</div>
cs

2. ๋ฐ•์Šค ์•ˆ ์ค‘์•™์ •๋ ฌ - CSS

1
2
3
4
5
6
7
8
9
10
.out_box {
 width: 100%;
 text-align: center;
 padding: 20px;
 border:1px solid blue; }
.in_box {
 display: inline-block;
 width: 50%;
 height: 50px;
 border:1px solid red; }
cs

3. ๋ฐ•์Šค ์•ˆ ์ค‘์•™์ •๋ ฌ ๊ฒฐ๊ณผ


๋ฐ˜์‘ํ˜•