Page 109 - DCAP408_WEB_PROGRAMMING
P. 109

Unit 4: Cascading Style Sheets




                                                                                                Notes
                 Example:

          BODY  {height:  8.5in}  /*  Required  for  percentage  heights  below  */
                #header {
                  position: fixed;
                  width: 100%;
                  height: 15%;
                  top: 0;
                  right: 0;
                  bottom: auto;
                  left: 0;
                }
                #sidebar {
                  position: fixed;
                  width: 10em;
                  height: auto;
                  top: 15%;
                  right: auto;
                  bottom: 100px;
                  left: 0;
                }
                #main {
                  position: fixed;
                  width: auto;
                  height: auto;
                  top: 15%;
                  right: 0;
                  bottom: 100px;
                  left: 10em;
                }
                #footer {
                  position: fixed;
                  width: 100%;
                  height: 100px;
              top:  auto;
                  right: 0;
                  bottom: 0;
                  left: 0;
                }




                                           LOVELY PROFESSIONAL UNIVERSITY                                   103
   104   105   106   107   108   109   110   111   112   113   114