Page 84 - Modul Web
P. 84

index.html

               <!DOCTYPE html>
               <html>

               <head>
                       <title>Position CSS</title>
                       <link rel="stylesheet" type="text/css" href="style.css">

               </head>
               <body>

                       <div class="kotak">Tutorial position css di www.malasngoding.com</div>
               </body>
               </html>



               style.css

               .kotak{

                       background: blue;
                       position: fixed;
                       left: 40px;

                       padding: 10px;
               }


































                                                                                                         84
   79   80   81   82   83   84   85   86   87   88   89