포지션고정04


포지션고정04

<!DOCTYPE HTML> <html> <head> <meta charset="utf-8"> <title>포지션고정04</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:100px; border:2px dotted #f00; overflow:auto;} .footer{position:fixed; height:96px; border:2px dotted #999; left:0; right:0; bottom:0; overflow:hidden;} </style> </head> <body> <div class="header">상단내용aaaaa...



원문링크 : 포지션고정04