Bootstrap

HTML相对定位与绝对定位

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style>
        /*紧靠浏览器
         *{
            margin: 0px;
            padding: 0px;
        } */
          .aaa{
              width: 600px;
              height: 600px;
              background-color: #00FFFF;
               /* 相对定位 相对于原来位置的定位  但是移动位置相对与原来的位置   位置依然保留*/
                /* 只是加上相对定位才能为绝对定位当爹 */
              position: relative;
              /*跟随浏览器 剧中 */
              margin: 0px auto;
              
          }
          .bbb{
             width: 600px;
             height: 600px;
              background-color: #0000FF;
          }
          .ccc{
              width: 100px;
              height: 100px;
 

;