๋ฐ์ํ
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. ๋ฐ์ค ์ ์ค์์ ๋ ฌ ๊ฒฐ๊ณผ
๋ฐ์ํ