Kamis, 03 Agustus 2017

Frame Element - Padding CSS



Judul : Frame Element - Padding CSS.
Tujuan : Mempelajari cara mengatur Padding pada tampilan html menggunakan CSS.
Target : Dapat memahami struktur dari pemrograman CSS.

Setelah mempelajari Margin CSS pada sesi sebelumnya, sekarang kita akan mempelajari mengenai Frame Element - Padding pada CSS. Frame Element ini di bagi menjadi 3 bagian yaitu margin, padding, dan border. Materi akan di bawas per sesi pada setiap materi mulai dari Margin CSS dan akan dilanjutkan dengan pembahasan Padding CSS dan sesi terakhir pada Frame Element adalah Border CSS.

<!DOCTYPE html>
<html>
 <head> 
  <style type="text/css">

   #biru{
     Height: 300px;
     width: 300px;
     background: blue;
     padding:10px;
   }
   
   #merah{
     Height: 300px;
     widht: 300px;
     background: red;
     padding-left:20px;
     padding-top:50px;
   }
  </style>

  <title>Padding</title>
 </head>

 <body>
  <div id="biru">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>  
  <div id="merah">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
 </body>
</html>


EmoticonEmoticon