박스모델


박스모델

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>박스모델</title> <style> body{ margin:0;} #box{ width:200px; /*height:200px;*/ min-height:100px; background:#F00; margin:5px 0 0 20px; padding:10px 20px; border:dashed 1px #000; border-top:none; border-bottom-style:solid; border-width:0 1px 10px 1px; outline:dotted 3px #f00;} </style> </head> <body> <div id="box">내용</div> </body> </html>...

박스모델에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.



원문링크 : 박스모델