<style type="text/css"> .box{ width: 200px; height: 100px; background-color: #dedede; border: 5px solid #000; padding: 10px; } </style> </head> <body> <div class="box"></div> </body>
<style type="text/css"> .box{ width: 200px; height: 100px; border: 5px solid #000; padding: 10px; postion:relative; } .box div{ postion:absolute; width:100%; height:100%; background-color: #dedede; } </style>
<div class="box" > <div></div> </div>
Jump To Top of Thread