(064)css_postion_absolute

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
  <head>
    <title>layout_absolute.html</title>
    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    <style type="text/css">
        div {
            width: 100px;
            height: 100px;
            border:2px solid red;
            position:absolute;
            left:50px;
            top:50px;
        }
    </style>
  </head>
  
  <body>
        <div id="div1"></div>
  </body>
</html>

 

posted @ 2015-01-27 13:41  雪中飞雁  阅读(55)  评论(0)    收藏  举报