포지션고정03


포지션고정03

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>포지션고정03</title> <style> body{padding-top:100px;} .header{ height:96px; /*background:#fcc;*/ border:2px dotted #999; position:fixed; left:0; top:0; right:0; overflow:hidden;} .content{position:fixed; left:0; top:100px; right:0; bottom:0; border:2px dotted #f00; overflow:auto;} </style> </head> <body> <div class="header">상단내용aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa</div> <div class="content"> <p>1</p> <p>2</p> <...



원문링크 : 포지션고정03